summaryrefslogtreecommitdiff
path: root/libavcodec/msmpeg4.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-01-25 01:40:58 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-01-25 01:40:58 +0000
commita64a006e95a674a6e257daa89b0eb2b74a26ec22 (patch)
treed213ab74d13227fd4dbaa4b450db198bb1324932 /libavcodec/msmpeg4.c
parent6b250f09e803975ae5aa3fce79a3960b5b05469a (diff)
dont duplicate decode012()
Originally committed as revision 3884 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r--libavcodec/msmpeg4.c10
1 files changed, 0 insertions, 10 deletions
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;