Mercurial > libavcodec.hg
annotate aac_ac3_parser.c @ 6182:45b44718ff31 libavcodec
Add generic rule for all tests.
author | diego |
---|---|
date | Sun, 27 Jan 2008 14:50:29 +0000 |
parents | 49d225414a3f |
children | 32b984487899 |
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; |
4941 | 32 const uint8_t *buf_ptr; |
33 int len, sample_rate, bit_rate, channels, samples; | |
34 | |
35 *poutbuf = NULL; | |
36 *poutbuf_size = 0; | |
37 | |
38 buf_ptr = buf; | |
39 while (buf_size > 0) { | |
5816
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
40 int size_needed= s->frame_size ? s->frame_size : s->header_size; |
4941 | 41 len = s->inbuf_ptr - s->inbuf; |
5816
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
42 |
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
43 if(len<size_needed){ |
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
44 len = FFMIN(size_needed - len, buf_size); |
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
45 memcpy(s->inbuf_ptr, buf_ptr, len); |
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
46 buf_ptr += len; |
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
47 s->inbuf_ptr += len; |
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
48 buf_size -= len; |
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
49 } |
0168cd384df3
factorize code and add safety check to prevent memcpying negative amounts
michael
parents:
4942
diff
changeset
|
50 |
4941 | 51 if (s->frame_size == 0) { |
52 if ((s->inbuf_ptr - s->inbuf) == s->header_size) { | |
53 len = s->sync(s->inbuf, &channels, &sample_rate, &bit_rate, | |
54 &samples); | |
55 if (len == 0) { | |
56 /* no sync found : move by one byte (inefficient, but simple!) */ | |
57 memmove(s->inbuf, s->inbuf + 1, s->header_size - 1); | |
58 s->inbuf_ptr--; | |
59 } else { | |
60 s->frame_size = len; | |
61 /* update codec info */ | |
62 avctx->sample_rate = sample_rate; | |
6119 | 63 /* 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
|
64 if(avctx->request_channels > 0 && |
356a3c897bd2
adjust output channels based on AVCodecContext.request_channels in AC3 parser
jbr
parents:
6101
diff
changeset
|
65 avctx->request_channels < channels && |
6119 | 66 (avctx->request_channels <= 2 || |
67 (avctx->request_channels == 1 && | |
68 avctx->codec_id == CODEC_ID_AC3))) { | |
6110
356a3c897bd2
adjust output channels based on AVCodecContext.request_channels in AC3 parser
jbr
parents:
6101
diff
changeset
|
69 avctx->channels = avctx->request_channels; |
6111 | 70 } else { |
71 avctx->channels = channels; | |
6110
356a3c897bd2
adjust output channels based on AVCodecContext.request_channels in AC3 parser
jbr
parents:
6101
diff
changeset
|
72 } |
4941 | 73 avctx->bit_rate = bit_rate; |
74 avctx->frame_size = samples; | |
75 } | |
76 } | |
77 } else { | |
78 if(s->inbuf_ptr - s->inbuf == s->frame_size){ | |
79 *poutbuf = s->inbuf; | |
80 *poutbuf_size = s->frame_size; | |
81 s->inbuf_ptr = s->inbuf; | |
82 s->frame_size = 0; | |
83 break; | |
84 } | |
85 } | |
86 } | |
87 return buf_ptr - buf; | |
88 } |