diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-12-23 18:10:05 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-12-23 18:56:56 +0100 |
commit | f3298f12997eb4b7ad203766f768f92e3dd72a2a (patch) | |
tree | e349cd427d9cfcf74aae21a85cff911c2aacaee6 /libavcodec/h264.c | |
parent | ed40b6bf07342dc80f616e909f0e6fec4073ade4 (diff) | |
download | ffmpeg-f3298f12997eb4b7ad203766f768f92e3dd72a2a.tar.gz |
Return proper error code after av_log_ask_for_sample()
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 1a0b341641..fae8440a1e 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2873,7 +2873,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0) av_log_ask_for_sample(s->avctx, NULL); s->picture_structure = last_pic_structure; s->droppable = last_pic_droppable; - return AVERROR_INVALIDDATA; + return AVERROR_PATCHWELCOME; } /* Take ownership of this buffer. Note that if another thread owned |