summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-02-21 15:29:17 +0000
committerDiego Biurrun <diego@biurrun.de>2010-02-21 15:29:17 +0000
commitdd3475682e48a1364dc1738405f8ec7767a78848 (patch)
tree7b11cb194ee1d8e00b12fa18e7febe2a3fc0663a /libavcodec/h264.h
parent769c4975654407eee8c4d5ae27d7366a97bd1fda (diff)
Remove unused variable, fixes warnings of the type:
libavcodec/h264.h:816: warning: unused variable `mb_xy' Originally committed as revision 21941 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 2c677c88b4..67b7558c34 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -813,7 +813,6 @@ static void fill_decode_neighbors(H264Context *h, int mb_type){
static void fill_decode_caches(H264Context *h, int mb_type){
MpegEncContext * const s = &h->s;
- const int mb_xy= h->mb_xy;
int topleft_xy, top_xy, topright_xy, left_xy[2];
int topleft_type, top_type, topright_type, left_type[2];
const uint8_t * left_block= h->left_block;