diff rv34.c @ 6099:a2b438bcb1d2 libavcodec

Make decode210() common function.
author kostya
date Thu, 03 Jan 2008 09:16:56 +0000
parents 89140b93ae09
children 7185e3bb0614
line wrap: on
line diff
--- a/rv34.c	Thu Jan 03 02:26:29 2008 +0000
+++ b/rv34.c	Thu Jan 03 09:16:56 2008 +0000
@@ -359,13 +359,6 @@
  * @{
  */
 
-static inline int decode210(GetBitContext *gb){
-    if (get_bits1(gb))
-        return 0;
-    else
-        return 2 - get_bits1(gb);
-}
-
 /**
  * Decode starting slice position.
  * @todo Maybe replace with ff_h263_decode_mba() ?