This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
ffv1enc: propagate error code from write_extradata()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer
12 years ago
parent
eeb3fb9e62
commit
c8d89be477
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
libavcodec/ffv1enc.c
+ 2
- 1
libavcodec/ffv1enc.c
View File
@@ -904,7 +904,8 @@ static av_cold int encode_init(AVCodecContext *avctx)
avctx->slices);
return AVERROR(ENOSYS);
slices_ok:
write_extradata(s);
if ((ret = write_extradata(s)) < 0)
return ret;
}
if ((ret = ffv1_init_slice_contexts(s)) < 0)
Write
Preview
Loading…
Cancel
Save