summaryrefslogtreecommitdiff
path: root/libavformat/flvdec.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/flvdec.c
parentdd9f59160e4809fba631b555d4e6022e0b4340ec (diff)
kill duplicated get/put_be24()
Originally committed as revision 4460 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/flvdec.c')
-rw-r--r--libavformat/flvdec.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index f316aa56d7..7884a17f72 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -18,15 +18,6 @@
*/
#include "avformat.h"
-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 flv_probe(AVProbeData *p)
{
const uint8_t *d;