diff vc1.c @ 6099:a2b438bcb1d2 libavcodec

Make decode210() common function.
author kostya
date Thu, 03 Jan 2008 09:16:56 +0000
parents 2c4164b26d53
children ddf5d7fae101
line wrap: on
line diff
--- a/vc1.c	Thu Jan 03 02:26:29 2008 +0000
+++ b/vc1.c	Thu Jan 03 09:16:56 2008 +0000
@@ -44,13 +44,6 @@
 static const uint16_t table_mb_intra[64][2];
 
 
-static inline int decode210(GetBitContext *gb){
-    if (get_bits1(gb))
-        return 0;
-    else
-        return 2 - get_bits1(gb);
-}
-
 /**
  * Init VC-1 specific tables and VC1Context members
  * @param v The VC1Context to initialize