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
mjpeg: return proper error code
Signed-off-by: Diego Biurrun <diego@biurrun.de>
tags/n2.4
Nidhi Makhijani
Diego Biurrun
11 years ago
parent
81b9bf3192
commit
c3ec963d0d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/mjpegenc.c
+ 1
- 1
libavcodec/mjpegenc.c
View File
@@ -46,7 +46,7 @@ av_cold int ff_mjpeg_encode_init(MpegEncContext *s)
m = av_malloc(sizeof(MJpegContext));
if (!m)
return
-1
;
return
AVERROR(ENOMEM)
;
s->min_qcoeff=-1023;
s->max_qcoeff= 1023;
Write
Preview
Loading…
Cancel
Save