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.

92 lines
3.3KB

  1. /*
  2. * Common AAC and AC3 parser
  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. #include "parser.h"
  23. #include "aac_ac3_parser.h"
  24. int ff_aac_ac3_parse(AVCodecParserContext *s1,
  25. AVCodecContext *avctx,
  26. const uint8_t **poutbuf, int *poutbuf_size,
  27. const uint8_t *buf, int buf_size)
  28. {
  29. AACAC3ParseContext *s = s1->priv_data;
  30. const uint8_t *buf_ptr;
  31. int len, sample_rate, bit_rate, channels, samples;
  32. *poutbuf = NULL;
  33. *poutbuf_size = 0;
  34. buf_ptr = buf;
  35. while (buf_size > 0) {
  36. len = s->inbuf_ptr - s->inbuf;
  37. if (s->frame_size == 0) {
  38. /* no header seen : find one. We need at least s->header_size
  39. bytes to parse it */
  40. len = FFMIN(s->header_size - len, buf_size);
  41. memcpy(s->inbuf_ptr, buf_ptr, len);
  42. buf_ptr += len;
  43. s->inbuf_ptr += len;
  44. buf_size -= len;
  45. if ((s->inbuf_ptr - s->inbuf) == s->header_size) {
  46. len = s->sync(s->inbuf, &channels, &sample_rate, &bit_rate,
  47. &samples);
  48. if (len == 0) {
  49. /* no sync found : move by one byte (inefficient, but simple!) */
  50. memmove(s->inbuf, s->inbuf + 1, s->header_size - 1);
  51. s->inbuf_ptr--;
  52. } else {
  53. s->frame_size = len;
  54. /* update codec info */
  55. avctx->sample_rate = sample_rate;
  56. /* set channels,except if the user explicitly requests 1 or 2 channels, XXX/FIXME this is a bit ugly */
  57. if(avctx->codec_id == CODEC_ID_AC3){
  58. if(avctx->channels!=1 && avctx->channels!=2){
  59. avctx->channels = channels;
  60. }
  61. } else {
  62. avctx->channels = channels;
  63. }
  64. avctx->bit_rate = bit_rate;
  65. avctx->frame_size = samples;
  66. }
  67. }
  68. } else {
  69. len = FFMIN(s->frame_size - len, buf_size);
  70. memcpy(s->inbuf_ptr, buf_ptr, len);
  71. buf_ptr += len;
  72. s->inbuf_ptr += len;
  73. buf_size -= len;
  74. if(s->inbuf_ptr - s->inbuf == s->frame_size){
  75. *poutbuf = s->inbuf;
  76. *poutbuf_size = s->frame_size;
  77. s->inbuf_ptr = s->inbuf;
  78. s->frame_size = 0;
  79. break;
  80. }
  81. }
  82. }
  83. return buf_ptr - buf;
  84. }