Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-02-20 13:28:55 +0300
committerCampbell Barton <campbell@blender.org>2022-02-21 04:01:32 +0300
commit626fb290eb43eb43b9451c757b1e906f0b5eeb53 (patch)
tree796748221e64a0a18bf6a91cee25f550454cf196 /source/blender/blenkernel/intern/writeffmpeg.c
parent36d7adf85c5839318e5a6148b75b637fd7b989f8 (diff)
Cleanup: quiet const cast warning
Diffstat (limited to 'source/blender/blenkernel/intern/writeffmpeg.c')
-rw-r--r--source/blender/blenkernel/intern/writeffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/writeffmpeg.c b/source/blender/blenkernel/intern/writeffmpeg.c
index dee852ca33a..61efade9c93 100644
--- a/source/blender/blenkernel/intern/writeffmpeg.c
+++ b/source/blender/blenkernel/intern/writeffmpeg.c
@@ -869,7 +869,7 @@ static int start_ffmpeg_impl(FFMpegContext *context,
{
/* Handle to the output file */
AVFormatContext *of;
- const AVOutputFormat *fmt;
+ AVOutputFormat *fmt;
char name[FILE_MAX], error[1024];
const char **exts;