diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-01-07 18:10:10 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2009-01-07 18:10:10 +0000 |
commit | 11d6f38cc997d70f687a3546af896b76b447ce0d (patch) | |
tree | 73cddb91070c9d29201c425fc4dec2787fb1ad3e /libavcodec/ac3dec.c | |
parent | 4b82e3cedcfc9871671bb613cd979de6995dcb4e (diff) | |
download | ffmpeg-11d6f38cc997d70f687a3546af896b76b447ce0d.tar.gz |
Factorise enum of AC3 error types to be usable by AAC in the ADTS patch that
will follow
Patch by Alex Converse ( alex converse gmail com )
Originally committed as revision 16479 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 19682c6040..74c8748ce0 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -36,6 +36,7 @@ #include "libavutil/crc.h" #include "internal.h" +#include "aac_ac3_parser.h" #include "ac3_parser.h" #include "ac3dec.h" #include "ac3dec_data.h" @@ -1248,32 +1249,32 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size, /* check that reported frame size fits in input buffer */ if(s->frame_size > buf_size) { av_log(avctx, AV_LOG_ERROR, "incomplete frame\n"); - err = AC3_PARSE_ERROR_FRAME_SIZE; + err = AAC_AC3_PARSE_ERROR_FRAME_SIZE; } /* check for crc mismatch */ - if(err != AC3_PARSE_ERROR_FRAME_SIZE && avctx->error_recognition >= FF_ER_CAREFUL) { + if(err != AAC_AC3_PARSE_ERROR_FRAME_SIZE && avctx->error_recognition >= FF_ER_CAREFUL) { if(av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, &buf[2], s->frame_size-2)) { av_log(avctx, AV_LOG_ERROR, "frame CRC mismatch\n"); - err = AC3_PARSE_ERROR_CRC; + err = AAC_AC3_PARSE_ERROR_CRC; } } - if(err && err != AC3_PARSE_ERROR_CRC) { + if(err && err != AAC_AC3_PARSE_ERROR_CRC) { switch(err) { - case AC3_PARSE_ERROR_SYNC: + case AAC_AC3_PARSE_ERROR_SYNC: av_log(avctx, AV_LOG_ERROR, "frame sync error\n"); return -1; - case AC3_PARSE_ERROR_BSID: + case AAC_AC3_PARSE_ERROR_BSID: av_log(avctx, AV_LOG_ERROR, "invalid bitstream id\n"); break; - case AC3_PARSE_ERROR_SAMPLE_RATE: + case AAC_AC3_PARSE_ERROR_SAMPLE_RATE: av_log(avctx, AV_LOG_ERROR, "invalid sample rate\n"); break; - case AC3_PARSE_ERROR_FRAME_SIZE: + case AAC_AC3_PARSE_ERROR_FRAME_SIZE: av_log(avctx, AV_LOG_ERROR, "invalid frame size\n"); break; - case AC3_PARSE_ERROR_FRAME_TYPE: + case AAC_AC3_PARSE_ERROR_FRAME_TYPE: /* skip frame if CRC is ok. otherwise use error concealment. */ /* TODO: add support for substreams and dependent frames */ if(s->frame_type == EAC3_FRAME_TYPE_DEPENDENT || s->substreamid) { |