diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-12-20 23:11:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-12-20 23:11:30 +0000 |
commit | 66c07ca96f0703134cd52f2332186c286f3dab39 (patch) | |
tree | 9126374fa5c98eed36d08c23e1df8cece44bb3d9 /libavcodec/h264.h | |
parent | 6beb8b2612e9f212fb1415647be4c5e87a7f1b97 (diff) | |
download | ffmpeg-66c07ca96f0703134cd52f2332186c286f3dab39.tar.gz |
Optimize get_dct8x8_allowed().
30 cpu cycles faster on pentium dual.
Originally committed as revision 16248 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 7708195f5b..40a94a0228 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -339,7 +339,7 @@ typedef struct H264Context{ int mb_field_decoding_flag; int mb_mbaff; ///< mb_aff_frame && mb_field_decoding_flag - unsigned int sub_mb_type[4]; + uint16_t sub_mb_type[4]; //POC stuff int poc_lsb; |