Mercurial > libavcodec.hg
annotate aac_ac3_parser.c @ 6646:7ca428109684 libavcodec
100l I broke AC3 in MPEG seeking.
author | michael |
---|---|
date | Sat, 19 Apr 2008 02:58:36 +0000 |
parents | 1d9eb7c09f98 |
children | f7d73a268ef6 |
rev | line source |
---|---|
4941 | 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 | |
23 #include "parser.h" | |
24 #include "aac_ac3_parser.h" | |
25 | |
4942
b42e963c8149
cosmetics: rename for consistency after previous aac and ac3 parsers move
aurel
parents:
4941
diff
changeset
|
26 int ff_aac_ac3_parse(AVCodecParserContext *s1, |
4941 | 27 AVCodecContext *avctx, |
28 const uint8_t **poutbuf, int *poutbuf_size, | |
29 const uint8_t *buf, int buf_size) | |
30 { | |
4942
b42e963c8149
cosmetics: rename for consistency after previous aac and ac3 parsers move
aurel
parents:
4941
diff
changeset
|
31 AACAC3ParseContext *s = s1->priv_data; |
6642
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
32 ParseContext *pc = &s->pc; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
33 int len, i; |
6643 | 34 int new_frame_start; |
5816
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
35 |
6644 | 36 get_next: |
6642
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
37 i=END_NOT_FOUND; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
38 if(s->remaining_size <= buf_size){ |
6644 | 39 if(s->remaining_size && !s->need_next_header){ |
6642
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
40 i= s->remaining_size; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
41 s->remaining_size = 0; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
42 }else{ //we need a header first |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
43 len=0; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
44 for(i=s->remaining_size; i<buf_size; i++){ |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
45 s->state = (s->state<<8) + buf[i]; |
6643 | 46 if((len=s->sync(s->state, s, &s->need_next_header, &new_frame_start))) |
6642
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
47 break; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
48 } |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
49 if(len<=0){ |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
50 i=END_NOT_FOUND; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
51 }else{ |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
52 i-= s->header_size -1; |
6646 | 53 s->remaining_size = len; |
6644 | 54 if(!new_frame_start) |
55 goto get_next; | |
6642
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
56 } |
6576 | 57 } |
6642
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
58 } |
5816
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
59 |
6642
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
60 if(ff_combine_frame(pc, i, &buf, &buf_size)<0){ |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
61 s->remaining_size -= FFMIN(s->remaining_size, buf_size); |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
62 *poutbuf = NULL; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
63 *poutbuf_size = 0; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
64 return buf_size; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
65 } |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
66 |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
67 *poutbuf = buf; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
68 *poutbuf_size = buf_size; |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
69 |
4941 | 70 /* update codec info */ |
6527
32b984487899
Pass AACAC3ParseContext to sync() instead of individual arguments. Patch by
jbr
parents:
6119
diff
changeset
|
71 avctx->sample_rate = s->sample_rate; |
6119 | 72 /* allow downmixing to stereo (or mono for AC3) */ |
6110
356a3c897bd2
adjust output channels based on AVCodecContext.request_channels in AC3 parser
jbr
parents:
6101
diff
changeset
|
73 if(avctx->request_channels > 0 && |
6527
32b984487899
Pass AACAC3ParseContext to sync() instead of individual arguments. Patch by
jbr
parents:
6119
diff
changeset
|
74 avctx->request_channels < s->channels && |
6119 | 75 (avctx->request_channels <= 2 || |
76 (avctx->request_channels == 1 && | |
77 avctx->codec_id == CODEC_ID_AC3))) { | |
6110
356a3c897bd2
adjust output channels based on AVCodecContext.request_channels in AC3 parser
jbr
parents:
6101
diff
changeset
|
78 avctx->channels = avctx->request_channels; |
6111 | 79 } else { |
6527
32b984487899
Pass AACAC3ParseContext to sync() instead of individual arguments. Patch by
jbr
parents:
6119
diff
changeset
|
80 avctx->channels = s->channels; |
6110
356a3c897bd2
adjust output channels based on AVCodecContext.request_channels in AC3 parser
jbr
parents:
6101
diff
changeset
|
81 } |
6527
32b984487899
Pass AACAC3ParseContext to sync() instead of individual arguments. Patch by
jbr
parents:
6119
diff
changeset
|
82 avctx->bit_rate = s->bit_rate; |
32b984487899
Pass AACAC3ParseContext to sync() instead of individual arguments. Patch by
jbr
parents:
6119
diff
changeset
|
83 avctx->frame_size = s->samples; |
6642
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
84 |
866b9ade048c
Change aac and ac3 parsers to use ff_combine_frame().
michael
parents:
6639
diff
changeset
|
85 return i; |
4941 | 86 } |