diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-01 12:28:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-01 12:30:57 +0200 |
commit | c9ac9adb46f2197fcce9ea22d99235ba12603581 (patch) | |
tree | 7250874f486b33689e10f2e0fff323f1cadf6ccc /libavcodec/h264.c | |
parent | 02001ada5cdd1d8b884141134ceb5c8607fa05f7 (diff) | |
download | ffmpeg-c9ac9adb46f2197fcce9ea22d99235ba12603581.tar.gz |
avcodec/h264: Remove failure on data partitioning
decode all NAL units instead
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index eb9a7d0c97..1ba0e95924 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -1561,8 +1561,6 @@ again: case NAL_DPB: case NAL_DPC: avpriv_request_sample(avctx, "data partitioning"); - ret = AVERROR(ENOSYS); - goto end; break; case NAL_SEI: init_get_bits(&h->gb, ptr, bit_length); |