diff options
author | Ivan Kalvachev <ikalvachev@gmail.com> | 2004-03-02 00:30:25 +0000 |
---|---|---|
committer | Ivan Kalvachev <ikalvachev@gmail.com> | 2004-03-02 00:30:25 +0000 |
commit | 197662a632db219a8ead876dd9b11b30515e899f (patch) | |
tree | 0bba3dc49e00f48a1fc6aa934bbab3c4c2d14987 | |
parent | 5e5c247a7c2e00372ced497528c5fa000181e34c (diff) | |
download | ffmpeg-197662a632db219a8ead876dd9b11b30515e899f.tar.gz |
fix typo
Originally committed as revision 2834 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/xvmcvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/xvmcvideo.c b/libavcodec/xvmcvideo.c index cd64f4c3af..201d2d7762 100644 --- a/libavcodec/xvmcvideo.c +++ b/libavcodec/xvmcvideo.c @@ -298,7 +298,7 @@ const int mb_xy = s->mb_y * s->mb_stride + s->mb_x; blocks_per_mb = 6; if( s->chroma_format >= 2){ - block_per_mb = 4 + (1 << (s->chroma_format)); + blocks_per_mb = 4 + (1 << (s->chroma_format)); } if(s->flags & CODEC_FLAG_GRAY){ |