[Bf-blender-cvs] [90686ff6f47] master: Fix WebM naming in the interface

Sergey Sharybin noreply at git.blender.org
Thu Oct 20 10:13:59 CEST 2022


Commit: 90686ff6f47ef14e96d94b7ad32f63a7015ca1c8
Author: Sergey Sharybin
Date:   Thu Oct 20 09:52:37 2022 +0200
Branches: master
https://developer.blender.org/rB90686ff6f47ef14e96d94b7ad32f63a7015ca1c8

Fix WebM naming in the interface

Use the official spelling of the WebM codec. Only affects the interface
string and not the identifier used in the Python API. Should not even
affect translations: the current msgstr's do no translate the original
string.

Reported by Anton Raves, thanks!

===================================================================

M	source/blender/makesrna/intern/rna_scene.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 8fc504f192e..0eb168ecd8e 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -5945,7 +5945,7 @@ static void rna_def_scene_ffmpeg_settings(BlenderRNA *brna)
       {AV_CODEC_ID_PNG, "PNG", 0, "PNG", ""},
       {AV_CODEC_ID_QTRLE, "QTRLE", 0, "QT rle / QT Animation", ""},
       {AV_CODEC_ID_THEORA, "THEORA", 0, "Theora", ""},
-      {AV_CODEC_ID_VP9, "WEBM", 0, "WEBM / VP9", ""},
+      {AV_CODEC_ID_VP9, "WEBM", 0, "WebM / VP9", ""},
       {0, NULL, 0, NULL, NULL},
   };



More information about the Bf-blender-cvs mailing list