diff options
author | Måns Rullgård <mans@mansr.com> | 2006-01-21 18:19:47 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-01-21 18:19:47 +0000 |
commit | 62327e2852ffe1c3088feafa0dfbd4ddb6632064 (patch) | |
tree | d49effc534403cb70b3728155da8f3aae0116ac6 /libavcodec/a52dec.c | |
parent | 13c71451350071888b5d690f9d48cd316e0d4aed (diff) | |
download | ffmpeg-62327e2852ffe1c3088feafa0dfbd4ddb6632064.tar.gz |
native ac3 parser
Originally committed as revision 4878 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/a52dec.c')
-rw-r--r-- | libavcodec/a52dec.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/a52dec.c b/libavcodec/a52dec.c index 182124f216..5226325ab6 100644 --- a/libavcodec/a52dec.c +++ b/libavcodec/a52dec.c @@ -76,13 +76,6 @@ static void* dlsymm(void* handle, const char* symbol) av_log( NULL, AV_LOG_ERROR, "A52 Decoder - function '%s' can't be resolved\n", symbol); return f; } - -int ff_a52_syncinfo( AVCodecContext * avctx, uint8_t * buf, int * flags, int * sample_rate, int * bit_rate ) -{ - AC3DecodeState *s = avctx->priv_data; - - return s->a52_syncinfo(buf, flags, sample_rate, bit_rate); -} #endif static int a52_decode_init(AVCodecContext *avctx) |