diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-05-31 23:52:08 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-07 00:55:24 +0200 |
commit | 617d91b76a42092fcbcff3ee5cc54a8780754537 (patch) | |
tree | be2cae8eefc33cffdbcd249a3379ecbdc8d6b96e | |
parent | f1150e0c7d5ad7c5139cfb0d0c16fcfd8cd6649d (diff) | |
download | ffmpeg-617d91b76a42092fcbcff3ee5cc54a8780754537.tar.gz |
h264: Fail on DPC its not fully implemented
Fixes part of Ticket1369
Found-by: ami_stuff
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 7cb86633622de22c8b6e43c9d608361e5adda740)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/h264.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 7ebe3521b0..4e6d6a5684 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -4399,6 +4399,9 @@ again: init_get_bits(&hx->inter_gb, ptr, bit_length); hx->inter_gb_ptr = &hx->inter_gb; + av_log(h->s.avctx, AV_LOG_ERROR, "Partitioned H.264 support is incomplete\n"); + return AVERROR_PATCHWELCOME; + if (hx->redundant_pic_count == 0 && hx->intra_gb_ptr && hx->s.data_partitioning && |