2007-05-08 23:25:31 +00:00
|
|
|
/*
|
2008-08-03 16:42:32 +00:00
|
|
|
* Common AAC and AC-3 parser prototypes
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
* Copyright (c) 2003 Michael Niedermayer
|
2007-05-08 23:25:31 +00:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#ifndef AVCODEC_AAC_AC3_PARSER_H
|
|
|
|
#define AVCODEC_AAC_AC3_PARSER_H
|
2007-05-08 23:25:31 +00:00
|
|
|
|
2007-06-16 22:59:13 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "avcodec.h"
|
2008-05-03 13:29:39 +00:00
|
|
|
#include "parser.h"
|
2007-06-16 22:59:13 +00:00
|
|
|
|
2009-01-07 18:10:10 +00:00
|
|
|
typedef enum {
|
|
|
|
AAC_AC3_PARSE_ERROR_SYNC = -1,
|
|
|
|
AAC_AC3_PARSE_ERROR_BSID = -2,
|
|
|
|
AAC_AC3_PARSE_ERROR_SAMPLE_RATE = -3,
|
|
|
|
AAC_AC3_PARSE_ERROR_FRAME_SIZE = -4,
|
|
|
|
AAC_AC3_PARSE_ERROR_FRAME_TYPE = -5,
|
|
|
|
AAC_AC3_PARSE_ERROR_CRC = -6,
|
|
|
|
AAC_AC3_PARSE_ERROR_CHANNEL_CFG = -7,
|
|
|
|
} AACAC3ParseError;
|
|
|
|
|
2007-05-08 23:29:07 +00:00
|
|
|
typedef struct AACAC3ParseContext {
|
2008-06-25 12:30:35 +00:00
|
|
|
ParseContext pc;
|
2007-05-08 23:25:31 +00:00
|
|
|
int frame_size;
|
|
|
|
int header_size;
|
2008-04-19 01:59:55 +00:00
|
|
|
int (*sync)(uint64_t state, struct AACAC3ParseContext *hdr_info,
|
|
|
|
int *need_next_header, int *new_frame_start);
|
2008-03-23 15:43:29 +00:00
|
|
|
|
|
|
|
int channels;
|
|
|
|
int sample_rate;
|
|
|
|
int bit_rate;
|
|
|
|
int samples;
|
2008-04-19 01:50:40 +00:00
|
|
|
|
|
|
|
int remaining_size;
|
|
|
|
uint64_t state;
|
2008-04-19 01:59:55 +00:00
|
|
|
|
|
|
|
int need_next_header;
|
2007-05-08 23:29:07 +00:00
|
|
|
} AACAC3ParseContext;
|
2007-05-08 23:25:31 +00:00
|
|
|
|
2007-05-08 23:29:07 +00:00
|
|
|
int ff_aac_ac3_parse(AVCodecParserContext *s1,
|
2007-05-08 23:25:31 +00:00
|
|
|
AVCodecContext *avctx,
|
|
|
|
const uint8_t **poutbuf, int *poutbuf_size,
|
|
|
|
const uint8_t *buf, int buf_size);
|
|
|
|
|
2008-08-31 07:39:47 +00:00
|
|
|
#endif /* AVCODEC_AAC_AC3_PARSER_H */
|