summaryrefslogtreecommitdiff
path: root/libavcodec/utvideoenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-30 17:50:33 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-08-30 17:50:33 +0200
commit0e781d9405093c0b95086eae8793ed31cbe6eb5b (patch)
tree0ea945b41249442dd81cc2689ac465cf65aef7bc /libavcodec/utvideoenc.c
parente8e4c8bddee7b77747346ca5047a84cc40dafc11 (diff)
utvideoenc: remove unused variable
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/utvideoenc.c')
-rw-r--r--libavcodec/utvideoenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utvideoenc.c b/libavcodec/utvideoenc.c
index 5cebd910aa..de7be310bc 100644
--- a/libavcodec/utvideoenc.c
+++ b/libavcodec/utvideoenc.c
@@ -266,7 +266,7 @@ static void median_predict(UtvideoContext *c, uint8_t *src, uint8_t *dst, int st
int width, int height)
{
int i, j;
- int A, B, C;
+ int A, C;
uint8_t prev;
/* First line uses left neighbour prediction */