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.

94 lines
3.4KB

  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. ParseContext *pc = &s->pc;
  31. int len, i;
  32. while(s->remaining_size <= buf_size){
  33. if(s->remaining_size && !s->need_next_header){
  34. i= s->remaining_size;
  35. s->remaining_size = 0;
  36. goto output_frame;
  37. }else{ //we need a header first
  38. len=0;
  39. for(i=s->remaining_size; i<buf_size; i++){
  40. s->state = (s->state<<8) + buf[i];
  41. if((len=s->sync(s->state, s, &s->need_next_header, &s->new_frame_start)))
  42. break;
  43. }
  44. i-= s->header_size -1;
  45. if(len>0){
  46. s->remaining_size = len + i;
  47. if(pc->index+i > 0 && s->new_frame_start){
  48. s->remaining_size -= i; // remaining_size=len
  49. output_frame:
  50. if(!s->frame_in_buffer){
  51. s->frame_in_buffer=1;
  52. buf+=i;
  53. buf_size-=i;
  54. continue;
  55. }
  56. ff_combine_frame(pc, i, &buf, &buf_size);
  57. *poutbuf = buf;
  58. *poutbuf_size = buf_size;
  59. /* update codec info */
  60. avctx->sample_rate = s->sample_rate;
  61. /* allow downmixing to stereo (or mono for AC3) */
  62. if(avctx->request_channels > 0 &&
  63. avctx->request_channels < s->channels &&
  64. (avctx->request_channels <= 2 ||
  65. (avctx->request_channels == 1 &&
  66. avctx->codec_id == CODEC_ID_AC3))) {
  67. avctx->channels = avctx->request_channels;
  68. } else {
  69. avctx->channels = s->channels;
  70. }
  71. avctx->bit_rate = s->bit_rate;
  72. avctx->frame_size = s->samples;
  73. return i;
  74. }
  75. s->frame_in_buffer=1;
  76. }else{
  77. break;
  78. }
  79. }
  80. }
  81. ff_combine_frame(pc, END_NOT_FOUND, &buf, &buf_size);
  82. s->remaining_size -= FFMIN(s->remaining_size, buf_size);
  83. *poutbuf = NULL;
  84. *poutbuf_size = 0;
  85. return buf_size;
  86. }