diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-04-26 13:52:12 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-04-26 20:18:27 +0200 |
commit | e6ff064845d02c43526c8a56dab121c219f16659 (patch) | |
tree | 2b2e1f7c601568d61cfdec616e0c7df0b5ea0f3b /libavcodec/h264.h | |
parent | 9d35fa520e3b27f7dd9fe12c433eb596f1271515 (diff) | |
download | ffmpeg-e6ff064845d02c43526c8a56dab121c219f16659.tar.gz |
Eliminate pointless '#if 1' statements without matching '#else'.
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 96720acf94..f22454b436 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -997,7 +997,6 @@ static void fill_decode_caches(H264Context *h, int mb_type){ } } -#if 1 if(IS_INTER(mb_type) || (IS_DIRECT(mb_type) && h->direct_spatial_mv_pred)){ int list; for(list=0; list<h->list_count; list++){ @@ -1172,7 +1171,6 @@ static void fill_decode_caches(H264Context *h, int mb_type){ } } } -#endif h->neighbor_transform_size= !!IS_8x8DCT(top_type) + !!IS_8x8DCT(left_type[0]); } |