aac_ac3_parser.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * Common AAC and AC-3 parser prototypes
  3. * Copyright (c) 2003 Fabrice Bellard.
  4. * Copyright (c) 2003 Michael Niedermayer.
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #ifndef AVCODEC_AAC_AC3_PARSER_H
  23. #define AVCODEC_AAC_AC3_PARSER_H
  24. #include <stdint.h>
  25. #include "avcodec.h"
  26. #include "parser.h"
  27. typedef struct AACAC3ParseContext {
  28. ParseContext pc;
  29. int frame_size;
  30. int header_size;
  31. int (*sync)(uint64_t state, struct AACAC3ParseContext *hdr_info,
  32. int *need_next_header, int *new_frame_start);
  33. int channels;
  34. int sample_rate;
  35. int bit_rate;
  36. int samples;
  37. int remaining_size;
  38. uint64_t state;
  39. int need_next_header;
  40. } AACAC3ParseContext;
  41. int ff_aac_ac3_parse(AVCodecParserContext *s1,
  42. AVCodecContext *avctx,
  43. const uint8_t **poutbuf, int *poutbuf_size,
  44. const uint8_t *buf, int buf_size);
  45. #endif /* AVCODEC_AAC_AC3_PARSER_H */