From 3662aa766f8ca086d8a23a9372d51706c86c2ec7 Mon Sep 17 00:00:00 2001
From: Kostya Shishkov <kostya.shishkov@gmail.com>
Date: Fri, 6 Jul 2007 14:11:29 +0000
Subject: [PATCH] Drop redundant assignment and variable

Originally committed as revision 9502 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/vc1.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index d56eefcc938..a0703d2033d 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -89,9 +89,7 @@ static int get_prefix(GetBitContext *gb, int stop, int len)
 }
 
 static inline int decode210(GetBitContext *gb){
-    int n;
-    n = get_bits1(gb);
-    if (n == 1)
+    if (get_bits1(gb))
         return 0;
     else
         return 2 - get_bits1(gb);
-- 
GitLab