You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.7KB

  1. /*
  2. * Common AAC and AC3 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 FFMPEG_AAC_AC3_PARSER_H
  23. #define FFMPEG_AAC_AC3_PARSER_H
  24. #include <stdint.h>
  25. #include "avcodec.h"
  26. typedef struct AACAC3ParseContext {
  27. int frame_size;
  28. int header_size;
  29. int (*sync)(uint64_t state, struct AACAC3ParseContext *hdr_info,
  30. int *need_next_header, int *new_frame_start);
  31. int channels;
  32. int sample_rate;
  33. int bit_rate;
  34. int samples;
  35. ParseContext pc;
  36. int remaining_size;
  37. uint64_t state;
  38. int need_next_header;
  39. int new_frame_start;
  40. int frame_in_buffer;
  41. } AACAC3ParseContext;
  42. int ff_aac_ac3_parse(AVCodecParserContext *s1,
  43. AVCodecContext *avctx,
  44. const uint8_t **poutbuf, int *poutbuf_size,
  45. const uint8_t *buf, int buf_size);
  46. #endif /* FFMPEG_AAC_AC3_PARSER_H */