aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-07-19 14:41:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-07-19 14:41:08 +0000
commita254c5745b27eec28430402f49937d9505691f20 (patch)
tree5545b107bf5b9850189baf2c55451d2e45620d49 /libavformat/mov.c
parentdd9f59160e4809fba631b555d4e6022e0b4340ec (diff)
downloadffmpeg-a254c5745b27eec28430402f49937d9505691f20.tar.gz
kill duplicated get/put_be24()
Originally committed as revision 4460 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 6b1d333e74..72f3ee392a 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -550,15 +550,6 @@ static int mov_mp4_read_descr(ByteIOContext *pb, int *tag)
return len;
}
-static inline unsigned int get_be24(ByteIOContext *s)
-{
- unsigned int val;
- val = get_byte(s) << 16;
- val |= get_byte(s) << 8;
- val |= get_byte(s);
- return val;
-}
-
static int mov_read_esds(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
{
AVStream *st = c->fc->streams[c->fc->nb_streams-1];