summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavcodec/bitstream.h9
-rw-r--r--libavcodec/msmpeg4.c10
-rw-r--r--libavcodec/vc9.c10
3 files changed, 9 insertions, 20 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h
index 5a9621d9b6..fa4f6f576e 100644
--- a/libavcodec/bitstream.h
+++ b/libavcodec/bitstream.h
@@ -824,4 +824,13 @@ static inline int get_xbits_trace(GetBitContext *s, int n, char *file, const cha
#define tprintf(...) {}
#endif
+static int decode012(GetBitContext *gb){
+ int n;
+ n = get_bits1(gb);
+ if (n == 0)
+ return 0;
+ else
+ return get_bits1(gb) + 1;
+}
+
#endif /* BITSTREAM_H */
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c
index a22631c222..e839b3fdb1 100644
--- a/libavcodec/msmpeg4.c
+++ b/libavcodec/msmpeg4.c
@@ -1195,16 +1195,6 @@ int ff_msmpeg4_decode_init(MpegEncContext *s)
return 0;
}
-static int decode012(GetBitContext *gb)
-{
- int n;
- n = get_bits1(gb);
- if (n == 0)
- return 0;
- else
- return get_bits1(gb) + 1;
-}
-
int msmpeg4_decode_picture_header(MpegEncContext * s)
{
int code;
diff --git a/libavcodec/vc9.c b/libavcodec/vc9.c
index a0e22c2078..30c8e963e1 100644
--- a/libavcodec/vc9.c
+++ b/libavcodec/vc9.c
@@ -299,16 +299,6 @@ static int get_prefix(GetBitContext *gb, int stop, int len)
#endif
}
-static int decode012(GetBitContext *gb)
-{
- int n;
- n = get_bits1(gb);
- if (n == 0)
- return 0;
- else
- return get_bits1(gb) + 1;
-}
-
static int init_common(VC9Context *v)
{
static int done = 0;