summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-12-05 21:17:00 +0100
committerAnton Khirnov <anton@khirnov.net>2014-04-29 14:49:42 +0200
commitc1f92d13589d431e576d719dd44427486a5e05cd (patch)
tree98980c85671bcb0daa859e579196fddb123206ee /libavcodec/mpegvideo.c
parent6a13505c069890cb0e2a07e29fd819a0cf2e73c1 (diff)
mpegvideo: remove unused MpegEncContext.b4_stride
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 3363ea0465..f7f95a79ef 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -1064,7 +1064,6 @@ static int init_context_frame(MpegEncContext *s)
s->mb_width = (s->width + 15) / 16;
s->mb_stride = s->mb_width + 1;
s->b8_stride = s->mb_width * 2 + 1;
- s->b4_stride = s->mb_width * 4 + 1;
mb_array_size = s->mb_height * s->mb_stride;
mv_table_size = (s->mb_height + 2) * s->mb_stride + 1;