diff options
author | Mans Rullgard <mans@mansr.com> | 2011-10-08 20:32:09 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-10-09 12:27:19 +0100 |
commit | d66b9dec116847400323ca15ee709529b237cdf1 (patch) | |
tree | 4eaff3eb5d65dd2236be56c5b2b262e86664fdf8 /libavcodec/h264pred.c | |
parent | a31e9f68a426f634e002282885c6c2eb1bfbea44 (diff) | |
download | ffmpeg-d66b9dec116847400323ca15ee709529b237cdf1.tar.gz |
h264pred: remove unused variables
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/h264pred.c')
-rw-r--r-- | libavcodec/h264pred.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index b3701ef3b8..5bef78071f 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -67,8 +67,6 @@ static void pred4x4_horizontal_vp8_c(uint8_t *src, const uint8_t *topright, int static void pred4x4_down_left_svq3_c(uint8_t *src, const uint8_t *topright, int stride){ LOAD_TOP_EDGE LOAD_LEFT_EDGE - const av_unused int unu0= t0; - const av_unused int unu1= l0; src[0+0*stride]=(l1 + t1)>>1; src[1+0*stride]= |