summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-12-20 23:11:30 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-12-20 23:11:30 +0000
commit66c07ca96f0703134cd52f2332186c286f3dab39 (patch)
tree9126374fa5c98eed36d08c23e1df8cece44bb3d9 /libavcodec/h264.h
parent6beb8b2612e9f212fb1415647be4c5e87a7f1b97 (diff)
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.h2
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;