summaryrefslogtreecommitdiff
path: root/libavcodec/rv34.c
diff options
context:
space:
mode:
authorKostya Shishkov <kostya.shishkov@gmail.com>2008-01-03 09:16:56 +0000
committerKostya Shishkov <kostya.shishkov@gmail.com>2008-01-03 09:16:56 +0000
commitb44665c4e648cb04aa4328b80e178f1ef3d85ff5 (patch)
treebab93d47dd2695f4118b2dfc689c1aaf8d7b6b65 /libavcodec/rv34.c
parentca32534337022b5902c78e44f5f234e2e61d1673 (diff)
Make decode210() common function.
Originally committed as revision 11382 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv34.c')
-rw-r--r--libavcodec/rv34.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/rv34.c b/libavcodec/rv34.c
index 0e3167cca7..fe7f4d6837 100644
--- a/libavcodec/rv34.c
+++ b/libavcodec/rv34.c
@@ -359,13 +359,6 @@ static inline void rv34_dequant4x4_16x16(DCTELEM *block, int Qdc, int Q)
* @{
*/
-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() ?