diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-02-07 01:14:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-02-07 01:14:58 +0000 |
commit | 5aa1d7598fecdfa3e304448c39fcb2815a5503d9 (patch) | |
tree | 4bcdbba7201482493100ccb0ad0d6686972c7915 /libavcodec/h264_direct.c | |
parent | 50f8e98507617f192af5b35279289bca0bf001b5 (diff) | |
download | ffmpeg-5aa1d7598fecdfa3e304448c39fcb2815a5503d9.tar.gz |
Add assert(sps.direct_8x8_inference_flag) to FIXME comment.
Originally committed as revision 21662 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264_direct.c')
-rw-r--r-- | libavcodec/h264_direct.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264_direct.c b/libavcodec/h264_direct.c index 9b6ca8a30f..fa9380d563 100644 --- a/libavcodec/h264_direct.c +++ b/libavcodec/h264_direct.c @@ -352,6 +352,7 @@ single_col: if(IS_INTERLACED(*mb_type) != IS_INTERLACED(mb_type_col[0])){ /* FIXME assumes direct_8x8_inference == 1 */ int y_shift = 2*!IS_INTERLACED(*mb_type); + assert(h->sps.direct_8x8_inference_flag); for(i8=0; i8<4; i8++){ const int x8 = i8&1; |