mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
ENOMEM is better, yes ...
Originally committed as revision 13535 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
60583fb653
commit
8b9c4ad237
@ -323,7 +323,7 @@ static int yuv4_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
|
||||
st = av_new_stream(s, 0);
|
||||
if(!st)
|
||||
return -1;
|
||||
return AVERROR(ENOMEM);
|
||||
st->codec->width = width;
|
||||
st->codec->height = height;
|
||||
av_reduce(&raten, &rated, raten, rated, (1UL<<31)-1);
|
||||
|
Loading…
Reference in New Issue
Block a user