Mercurial > libavcodec.hg
annotate parser.c @ 4848:1e7f86b4e34c libavcodec
Update preprocessor directive comments to take recent changes to this file
into account.
| author | diego |
|---|---|
| date | Sat, 14 Apr 2007 09:59:57 +0000 |
| parents | 841ecebff8c8 |
| children | 40f3a7f2b1fd |
| rev | line source |
|---|---|
| 1613 | 1 /* |
| 2 * Audio and Video frame extraction | |
| 3 * Copyright (c) 2003 Fabrice Bellard. | |
| 4 * Copyright (c) 2003 Michael Niedermayer. | |
| 5 * | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
6 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
7 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
| 1613 | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
| 1613 | 12 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
| 1613 | 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 | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3776
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2979
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 1613 | 21 */ |
| 22 #include "avcodec.h" | |
| 23 #include "mpegvideo.h" | |
| 24 #include "mpegaudio.h" | |
|
4645
056127e5df89
remove redundancy in AC-3 parser by using common tables from ac3tab.h
jbr
parents:
4501
diff
changeset
|
25 #include "ac3.h" |
|
4150
2205aefb22b7
move AVCodecParser prototypes and definitions to parser.h, and move mpegvideo parser to mpeg12.c
bcoudurier
parents:
4146
diff
changeset
|
26 #include "parser.h" |
| 1613 | 27 |
| 28 AVCodecParser *av_first_parser = NULL; | |
| 29 | |
| 30 void av_register_codec_parser(AVCodecParser *parser) | |
| 31 { | |
| 32 parser->next = av_first_parser; | |
| 33 av_first_parser = parser; | |
| 34 } | |
| 35 | |
| 36 AVCodecParserContext *av_parser_init(int codec_id) | |
| 37 { | |
| 38 AVCodecParserContext *s; | |
| 39 AVCodecParser *parser; | |
| 40 int ret; | |
| 2967 | 41 |
|
2486
f2a9559db6ac
10l (array gets padded with 0 which is CODEC_ID_NONE -> parsers claim to support CODEC_ID_NONE)
michael
parents:
2480
diff
changeset
|
42 if(codec_id == CODEC_ID_NONE) |
|
f2a9559db6ac
10l (array gets padded with 0 which is CODEC_ID_NONE -> parsers claim to support CODEC_ID_NONE)
michael
parents:
2480
diff
changeset
|
43 return NULL; |
| 1613 | 44 |
| 45 for(parser = av_first_parser; parser != NULL; parser = parser->next) { | |
| 46 if (parser->codec_ids[0] == codec_id || | |
| 47 parser->codec_ids[1] == codec_id || | |
| 2348 | 48 parser->codec_ids[2] == codec_id || |
| 49 parser->codec_ids[3] == codec_id || | |
| 50 parser->codec_ids[4] == codec_id) | |
| 1613 | 51 goto found; |
| 52 } | |
| 53 return NULL; | |
| 54 found: | |
| 55 s = av_mallocz(sizeof(AVCodecParserContext)); | |
| 56 if (!s) | |
| 57 return NULL; | |
| 58 s->parser = parser; | |
| 59 s->priv_data = av_mallocz(parser->priv_data_size); | |
| 60 if (!s->priv_data) { | |
| 61 av_free(s); | |
| 62 return NULL; | |
| 63 } | |
| 64 if (parser->parser_init) { | |
| 65 ret = parser->parser_init(s); | |
| 66 if (ret != 0) { | |
| 67 av_free(s->priv_data); | |
| 68 av_free(s); | |
| 69 return NULL; | |
| 70 } | |
| 71 } | |
| 2030 | 72 s->fetch_timestamp=1; |
|
4739
9b4c5d2fb8ce
set pict_type to I type during init so parsers which dont set it get all i frames, fixes mp3 seeking
michael
parents:
4679
diff
changeset
|
73 s->pict_type = FF_I_TYPE; |
| 1613 | 74 return s; |
| 75 } | |
| 76 | |
| 3989 | 77 /** |
| 78 * | |
| 79 * @param buf input | |
| 80 * @param buf_size input length, to signal EOF, this should be 0 (so that the last frame can be output) | |
| 81 * @param pts input presentation timestamp | |
| 82 * @param dts input decoding timestamp | |
| 83 * @param poutbuf will contain a pointer to the first byte of the output frame | |
| 84 * @param poutbuf_size will contain the length of the output frame | |
| 85 * @return the number of bytes of the input bitstream used | |
| 86 * | |
| 87 * Example: | |
| 88 * @code | |
| 89 * while(in_len){ | |
| 90 * len = av_parser_parse(myparser, AVCodecContext, &data, &size, | |
| 91 * in_data, in_len, | |
| 92 * pts, dts); | |
| 93 * in_data += len; | |
| 94 * in_len -= len; | |
| 95 * | |
| 4310 | 96 * if(size) |
| 97 * decode_frame(data, size); | |
| 3989 | 98 * } |
| 99 * @endcode | |
| 100 */ | |
| 2967 | 101 int av_parser_parse(AVCodecParserContext *s, |
| 1613 | 102 AVCodecContext *avctx, |
| 2967 | 103 uint8_t **poutbuf, int *poutbuf_size, |
| 1696 | 104 const uint8_t *buf, int buf_size, |
| 105 int64_t pts, int64_t dts) | |
| 1613 | 106 { |
| 1696 | 107 int index, i, k; |
|
1694
13169235c306
added End Of File handling to return last picture for MPEG1/2/4
bellard
parents:
1681
diff
changeset
|
108 uint8_t dummy_buf[FF_INPUT_BUFFER_PADDING_SIZE]; |
| 2967 | 109 |
|
1694
13169235c306
added End Of File handling to return last picture for MPEG1/2/4
bellard
parents:
1681
diff
changeset
|
110 if (buf_size == 0) { |
|
13169235c306
added End Of File handling to return last picture for MPEG1/2/4
bellard
parents:
1681
diff
changeset
|
111 /* padding is always necessary even if EOF, so we add it here */ |
|
13169235c306
added End Of File handling to return last picture for MPEG1/2/4
bellard
parents:
1681
diff
changeset
|
112 memset(dummy_buf, 0, sizeof(dummy_buf)); |
|
13169235c306
added End Of File handling to return last picture for MPEG1/2/4
bellard
parents:
1681
diff
changeset
|
113 buf = dummy_buf; |
| 1696 | 114 } else { |
| 115 /* add a new packet descriptor */ | |
| 116 k = (s->cur_frame_start_index + 1) & (AV_PARSER_PTS_NB - 1); | |
| 117 s->cur_frame_start_index = k; | |
| 118 s->cur_frame_offset[k] = s->cur_offset; | |
| 119 s->cur_frame_pts[k] = pts; | |
| 120 s->cur_frame_dts[k] = dts; | |
| 121 | |
| 122 /* fill first PTS/DTS */ | |
| 2030 | 123 if (s->fetch_timestamp){ |
| 124 s->fetch_timestamp=0; | |
| 1696 | 125 s->last_pts = pts; |
| 126 s->last_dts = dts; | |
| 4846 | 127 s->last_offset = 0; |
| 2107 | 128 s->cur_frame_pts[k] = |
| 129 s->cur_frame_dts[k] = AV_NOPTS_VALUE; | |
| 1696 | 130 } |
|
1694
13169235c306
added End Of File handling to return last picture for MPEG1/2/4
bellard
parents:
1681
diff
changeset
|
131 } |
|
13169235c306
added End Of File handling to return last picture for MPEG1/2/4
bellard
parents:
1681
diff
changeset
|
132 |
| 1613 | 133 /* WARNING: the returned index can be negative */ |
| 134 index = s->parser->parser_parse(s, avctx, poutbuf, poutbuf_size, buf, buf_size); | |
|
4122
daae66c03857
Replace most of the %lld and %llx by their (cleaner) PRI*64 counterparts.
diego
parents:
4104
diff
changeset
|
135 //av_log(NULL, AV_LOG_DEBUG, "parser: in:%"PRId64", %"PRId64", out:%"PRId64", %"PRId64", in:%d out:%d id:%d\n", pts, dts, s->last_pts, s->last_dts, buf_size, *poutbuf_size, avctx->codec_id); |
| 1613 | 136 /* update the file pointer */ |
| 137 if (*poutbuf_size) { | |
| 1696 | 138 /* fill the data for the current frame */ |
| 1613 | 139 s->frame_offset = s->last_frame_offset; |
| 1696 | 140 s->pts = s->last_pts; |
| 141 s->dts = s->last_dts; | |
| 4846 | 142 s->offset = s->last_offset; |
| 2967 | 143 |
| 1696 | 144 /* offset of the next frame */ |
| 1613 | 145 s->last_frame_offset = s->cur_offset + index; |
| 1696 | 146 /* find the packet in which the new frame starts. It |
| 147 is tricky because of MPEG video start codes | |
| 148 which can begin in one packet and finish in | |
| 149 another packet. In the worst case, an MPEG | |
| 150 video start code could be in 4 different | |
| 151 packets. */ | |
| 152 k = s->cur_frame_start_index; | |
| 153 for(i = 0; i < AV_PARSER_PTS_NB; i++) { | |
| 154 if (s->last_frame_offset >= s->cur_frame_offset[k]) | |
| 155 break; | |
| 156 k = (k - 1) & (AV_PARSER_PTS_NB - 1); | |
| 157 } | |
| 2030 | 158 |
| 1696 | 159 s->last_pts = s->cur_frame_pts[k]; |
| 160 s->last_dts = s->cur_frame_dts[k]; | |
| 4846 | 161 s->last_offset = s->last_frame_offset - s->cur_frame_offset[k]; |
| 2967 | 162 |
| 2030 | 163 /* some parsers tell us the packet size even before seeing the first byte of the next packet, |
| 164 so the next pts/dts is in the next chunk */ | |
| 165 if(index == buf_size){ | |
| 166 s->fetch_timestamp=1; | |
| 167 } | |
| 1613 | 168 } |
| 169 if (index < 0) | |
| 170 index = 0; | |
| 171 s->cur_offset += index; | |
| 172 return index; | |
| 173 } | |
| 174 | |
| 2777 | 175 /** |
| 176 * | |
| 177 * @return 0 if the output buffer is a subset of the input, 1 if it is allocated and must be freed | |
|
3421
b7826511f7b6
AVBitStreamFilter (some thingy which can modify the bitstream like add or remove global headers or change the headers or ...)
michael
parents:
3395
diff
changeset
|
178 * @deprecated use AVBitstreamFilter |
| 2777 | 179 */ |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
180 int av_parser_change(AVCodecParserContext *s, |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
181 AVCodecContext *avctx, |
| 2967 | 182 uint8_t **poutbuf, int *poutbuf_size, |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
183 const uint8_t *buf, int buf_size, int keyframe){ |
| 2967 | 184 |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
185 if(s && s->parser->split){ |
| 2777 | 186 if((avctx->flags & CODEC_FLAG_GLOBAL_HEADER) || (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER)){ |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
187 int i= s->parser->split(avctx, buf, buf_size); |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
188 buf += i; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
189 buf_size -= i; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
190 } |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
191 } |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
192 |
|
2864
95bac7109ff0
Kill some compiler warnings. Compiled code verified identical after changes.
mru
parents:
2846
diff
changeset
|
193 /* cast to avoid warning about discarding qualifiers */ |
|
95bac7109ff0
Kill some compiler warnings. Compiled code verified identical after changes.
mru
parents:
2846
diff
changeset
|
194 *poutbuf= (uint8_t *) buf; |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
195 *poutbuf_size= buf_size; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
196 if(avctx->extradata){ |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
197 if( (keyframe && (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER)) |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
198 /*||(s->pict_type != I_TYPE && (s->flags & PARSER_FLAG_DUMP_EXTRADATA_AT_NOKEY))*/ |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
199 /*||(? && (s->flags & PARSER_FLAG_DUMP_EXTRADATA_AT_BEGIN)*/){ |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
200 int size= buf_size + avctx->extradata_size; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
201 *poutbuf_size= size; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
202 *poutbuf= av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE); |
| 2967 | 203 |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
204 memcpy(*poutbuf, avctx->extradata, avctx->extradata_size); |
| 2777 | 205 memcpy((*poutbuf) + avctx->extradata_size, buf, buf_size + FF_INPUT_BUFFER_PADDING_SIZE); |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
206 return 1; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
207 } |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
208 } |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
209 |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
210 return 0; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
211 } |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
212 |
| 1613 | 213 void av_parser_close(AVCodecParserContext *s) |
| 214 { | |
| 215 if (s->parser->parser_close) | |
| 216 s->parser->parser_close(s); | |
| 217 av_free(s->priv_data); | |
| 218 av_free(s); | |
| 219 } | |
| 220 | |
| 221 /*****************************************************/ | |
| 222 | |
| 223 /** | |
| 224 * combines the (truncated) bitstream to a complete frame | |
| 225 * @returns -1 if no complete frame could be created | |
| 226 */ | |
| 1988 | 227 int ff_combine_frame(ParseContext *pc, int next, uint8_t **buf, int *buf_size) |
| 1613 | 228 { |
| 229 #if 0 | |
| 230 if(pc->overread){ | |
| 231 printf("overread %d, state:%X next:%d index:%d o_index:%d\n", pc->overread, pc->state, next, pc->index, pc->overread_index); | |
| 232 printf("%X %X %X %X\n", (*buf)[0], (*buf)[1],(*buf)[2],(*buf)[3]); | |
| 233 } | |
| 234 #endif | |
| 235 | |
| 4795 | 236 /* Copy overread bytes from last frame into buffer. */ |
| 1613 | 237 for(; pc->overread>0; pc->overread--){ |
| 238 pc->buffer[pc->index++]= pc->buffer[pc->overread_index++]; | |
| 239 } | |
| 2386 | 240 |
| 241 /* flush remaining if EOF */ | |
| 242 if(!*buf_size && next == END_NOT_FOUND){ | |
| 243 next= 0; | |
| 244 } | |
| 245 | |
| 1613 | 246 pc->last_index= pc->index; |
| 247 | |
| 248 /* copy into buffer end return */ | |
| 249 if(next == END_NOT_FOUND){ | |
| 250 pc->buffer= av_fast_realloc(pc->buffer, &pc->buffer_size, (*buf_size) + pc->index + FF_INPUT_BUFFER_PADDING_SIZE); | |
| 251 | |
| 252 memcpy(&pc->buffer[pc->index], *buf, *buf_size); | |
| 253 pc->index += *buf_size; | |
| 254 return -1; | |
| 255 } | |
| 256 | |
| 257 *buf_size= | |
| 258 pc->overread_index= pc->index + next; | |
| 2967 | 259 |
| 1613 | 260 /* append to buffer */ |
| 261 if(pc->index){ | |
| 262 pc->buffer= av_fast_realloc(pc->buffer, &pc->buffer_size, next + pc->index + FF_INPUT_BUFFER_PADDING_SIZE); | |
| 263 | |
| 264 memcpy(&pc->buffer[pc->index], *buf, next + FF_INPUT_BUFFER_PADDING_SIZE ); | |
| 265 pc->index = 0; | |
| 266 *buf= pc->buffer; | |
| 267 } | |
| 268 | |
| 269 /* store overread bytes */ | |
| 270 for(;next < 0; next++){ | |
| 271 pc->state = (pc->state<<8) | pc->buffer[pc->last_index + next]; | |
| 272 pc->overread++; | |
| 273 } | |
| 274 | |
| 275 #if 0 | |
| 276 if(pc->overread){ | |
| 277 printf("overread %d, state:%X next:%d index:%d o_index:%d\n", pc->overread, pc->state, next, pc->index, pc->overread_index); | |
| 278 printf("%X %X %X %X\n", (*buf)[0], (*buf)[1],(*buf)[2],(*buf)[3]); | |
| 279 } | |
| 280 #endif | |
| 281 | |
| 282 return 0; | |
| 283 } | |
| 284 | |
| 1988 | 285 void ff_parse_close(AVCodecParserContext *s) |
| 1613 | 286 { |
| 1988 | 287 ParseContext *pc = s->priv_data; |
| 1613 | 288 |
| 289 av_free(pc->buffer); | |
| 1988 | 290 } |
| 291 | |
|
4150
2205aefb22b7
move AVCodecParser prototypes and definitions to parser.h, and move mpegvideo parser to mpeg12.c
bcoudurier
parents:
4146
diff
changeset
|
292 void ff_parse1_close(AVCodecParserContext *s) |
| 1988 | 293 { |
| 294 ParseContext1 *pc1 = s->priv_data; | |
| 295 | |
| 296 av_free(pc1->pc.buffer); | |
| 297 av_free(pc1->enc); | |
| 1613 | 298 } |
| 299 | |
| 300 /*************************/ | |
| 301 | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
302 #ifdef CONFIG_MPEG4VIDEO_PARSER |
| 1613 | 303 /* used by parser */ |
| 304 /* XXX: make it use less memory */ | |
| 2967 | 305 static int av_mpeg4_decode_header(AVCodecParserContext *s1, |
| 1613 | 306 AVCodecContext *avctx, |
| 307 const uint8_t *buf, int buf_size) | |
| 308 { | |
| 309 ParseContext1 *pc = s1->priv_data; | |
| 310 MpegEncContext *s = pc->enc; | |
| 311 GetBitContext gb1, *gb = &gb1; | |
| 312 int ret; | |
| 313 | |
| 314 s->avctx = avctx; | |
| 1614 | 315 s->current_picture_ptr = &s->current_picture; |
| 316 | |
| 317 if (avctx->extradata_size && pc->first_picture){ | |
| 318 init_get_bits(gb, avctx->extradata, avctx->extradata_size*8); | |
| 319 ret = ff_mpeg4_decode_picture_header(s, gb); | |
| 320 } | |
| 321 | |
| 1613 | 322 init_get_bits(gb, buf, 8 * buf_size); |
| 323 ret = ff_mpeg4_decode_picture_header(s, gb); | |
| 324 if (s->width) { | |
| 2270 | 325 avcodec_set_dimensions(avctx, s->width, s->height); |
| 1613 | 326 } |
| 2837 | 327 s1->pict_type= s->pict_type; |
| 1614 | 328 pc->first_picture = 0; |
| 1613 | 329 return ret; |
| 330 } | |
| 331 | |
|
2024
f65d87bfdd5a
some of the warning fixes by (Michael Roitzsch <mroi at users dot sourceforge dot net>)
michael
parents:
1988
diff
changeset
|
332 static int mpeg4video_parse_init(AVCodecParserContext *s) |
| 1613 | 333 { |
| 334 ParseContext1 *pc = s->priv_data; | |
| 1614 | 335 |
| 1613 | 336 pc->enc = av_mallocz(sizeof(MpegEncContext)); |
| 337 if (!pc->enc) | |
| 338 return -1; | |
| 1614 | 339 pc->first_picture = 1; |
| 1613 | 340 return 0; |
| 341 } | |
| 342 | |
| 343 static int mpeg4video_parse(AVCodecParserContext *s, | |
| 344 AVCodecContext *avctx, | |
| 2967 | 345 uint8_t **poutbuf, int *poutbuf_size, |
| 1613 | 346 const uint8_t *buf, int buf_size) |
| 347 { | |
| 1988 | 348 ParseContext *pc = s->priv_data; |
| 1613 | 349 int next; |
| 2967 | 350 |
| 2837 | 351 if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){ |
| 352 next= buf_size; | |
| 353 }else{ | |
| 354 next= ff_mpeg4_find_frame_end(pc, buf, buf_size); | |
| 2967 | 355 |
| 2837 | 356 if (ff_combine_frame(pc, next, (uint8_t **)&buf, &buf_size) < 0) { |
| 357 *poutbuf = NULL; | |
| 358 *poutbuf_size = 0; | |
| 359 return buf_size; | |
| 360 } | |
| 1613 | 361 } |
| 362 av_mpeg4_decode_header(s, avctx, buf, buf_size); | |
| 363 | |
| 364 *poutbuf = (uint8_t *)buf; | |
| 365 *poutbuf_size = buf_size; | |
| 366 return next; | |
| 367 } | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
368 #endif |
| 1613 | 369 |
|
4175
b3328ed50a5e
make mpeg4video_split public as ff_mpeg4video_split
stefang
parents:
4150
diff
changeset
|
370 int ff_mpeg4video_split(AVCodecContext *avctx, |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
371 const uint8_t *buf, int buf_size) |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
372 { |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
373 int i; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
374 uint32_t state= -1; |
| 2967 | 375 |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
376 for(i=0; i<buf_size; i++){ |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
377 state= (state<<8) | buf[i]; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
378 if(state == 0x1B3 || state == 0x1B6) |
| 2777 | 379 return i-3; |
|
2769
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
380 } |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
381 return 0; |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
382 } |
|
1394b45a7bf4
support changing in bitstream global headers into extradata style and back
michael
parents:
2637
diff
changeset
|
383 |
| 1613 | 384 /*************************/ |
| 385 | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
386 #ifdef CONFIG_MPEGAUDIO_PARSER |
| 1613 | 387 typedef struct MpegAudioParseContext { |
| 2979 | 388 uint8_t inbuf[MPA_MAX_CODED_FRAME_SIZE]; /* input buffer */ |
| 1613 | 389 uint8_t *inbuf_ptr; |
| 390 int frame_size; | |
| 391 int free_format_frame_size; | |
| 392 int free_format_next_header; | |
|
2470
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
393 uint32_t header; |
|
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
394 int header_count; |
| 1613 | 395 } MpegAudioParseContext; |
| 396 | |
| 397 #define MPA_HEADER_SIZE 4 | |
| 398 | |
| 399 /* header + layer + bitrate + freq + lsf/mpeg25 */ | |
|
2522
e25782262d7d
kill warnings patch by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2486
diff
changeset
|
400 #undef SAME_HEADER_MASK /* mpegaudio.h defines different version */ |
| 1613 | 401 #define SAME_HEADER_MASK \ |
| 2480 | 402 (0xffe00000 | (3 << 17) | (3 << 10) | (3 << 19)) |
| 1613 | 403 |
| 404 static int mpegaudio_parse_init(AVCodecParserContext *s1) | |
| 405 { | |
| 406 MpegAudioParseContext *s = s1->priv_data; | |
| 407 s->inbuf_ptr = s->inbuf; | |
| 408 return 0; | |
| 409 } | |
| 410 | |
| 411 static int mpegaudio_parse(AVCodecParserContext *s1, | |
| 412 AVCodecContext *avctx, | |
| 2967 | 413 uint8_t **poutbuf, int *poutbuf_size, |
| 1613 | 414 const uint8_t *buf, int buf_size) |
| 415 { | |
| 416 MpegAudioParseContext *s = s1->priv_data; | |
|
2470
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
417 int len, ret, sr; |
| 1613 | 418 uint32_t header; |
| 419 const uint8_t *buf_ptr; | |
| 420 | |
| 421 *poutbuf = NULL; | |
| 422 *poutbuf_size = 0; | |
| 423 buf_ptr = buf; | |
| 424 while (buf_size > 0) { | |
| 2979 | 425 len = s->inbuf_ptr - s->inbuf; |
| 426 if (s->frame_size == 0) { | |
| 1613 | 427 /* special case for next header for first frame in free |
| 428 format case (XXX: find a simpler method) */ | |
| 429 if (s->free_format_next_header != 0) { | |
| 430 s->inbuf[0] = s->free_format_next_header >> 24; | |
| 431 s->inbuf[1] = s->free_format_next_header >> 16; | |
| 432 s->inbuf[2] = s->free_format_next_header >> 8; | |
| 433 s->inbuf[3] = s->free_format_next_header; | |
| 434 s->inbuf_ptr = s->inbuf + 4; | |
| 435 s->free_format_next_header = 0; | |
| 436 goto got_header; | |
| 437 } | |
| 2979 | 438 /* no header seen : find one. We need at least MPA_HEADER_SIZE |
| 1613 | 439 bytes to parse it */ |
|
3639
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
440 len = FFMIN(MPA_HEADER_SIZE - len, buf_size); |
| 2979 | 441 if (len > 0) { |
| 442 memcpy(s->inbuf_ptr, buf_ptr, len); | |
| 443 buf_ptr += len; | |
| 444 buf_size -= len; | |
| 445 s->inbuf_ptr += len; | |
| 446 } | |
| 447 if ((s->inbuf_ptr - s->inbuf) >= MPA_HEADER_SIZE) { | |
| 1613 | 448 got_header: |
| 2979 | 449 header = (s->inbuf[0] << 24) | (s->inbuf[1] << 16) | |
| 450 (s->inbuf[2] << 8) | s->inbuf[3]; | |
| 1613 | 451 |
|
4104
04ff8026d9c0
dont set the sampling rate just because 1 mp3 packet header says so (fixes playback speed on some old mencoder generated avis which where then dumped to mp3)
michael
parents:
3989
diff
changeset
|
452 ret = mpa_decode_header(avctx, header, &sr); |
| 1613 | 453 if (ret < 0) { |
|
2470
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
454 s->header_count= -2; |
| 2979 | 455 /* no sync found : move by one byte (inefficient, but simple!) */ |
| 456 memmove(s->inbuf, s->inbuf + 1, s->inbuf_ptr - s->inbuf - 1); | |
| 457 s->inbuf_ptr--; | |
| 4652 | 458 dprintf(avctx, "skip %x\n", header); |
| 1613 | 459 /* reset free format frame size to give a chance |
| 460 to get a new bitrate */ | |
| 461 s->free_format_frame_size = 0; | |
| 2979 | 462 } else { |
|
2470
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
463 if((header&SAME_HEADER_MASK) != (s->header&SAME_HEADER_MASK) && s->header) |
|
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
464 s->header_count= -3; |
|
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
465 s->header= header; |
|
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
466 s->header_count++; |
| 1613 | 467 s->frame_size = ret; |
| 2967 | 468 |
| 1613 | 469 #if 0 |
| 470 /* free format: prepare to compute frame size */ | |
| 2979 | 471 if (decode_header(s, header) == 1) { |
| 472 s->frame_size = -1; | |
| 1613 | 473 } |
| 474 #endif | |
| 2979 | 475 } |
|
4104
04ff8026d9c0
dont set the sampling rate just because 1 mp3 packet header says so (fixes playback speed on some old mencoder generated avis which where then dumped to mp3)
michael
parents:
3989
diff
changeset
|
476 if(s->header_count > 1) |
|
04ff8026d9c0
dont set the sampling rate just because 1 mp3 packet header says so (fixes playback speed on some old mencoder generated avis which where then dumped to mp3)
michael
parents:
3989
diff
changeset
|
477 avctx->sample_rate= sr; |
| 2979 | 478 } |
| 2967 | 479 } else |
| 1613 | 480 #if 0 |
| 481 if (s->frame_size == -1) { | |
| 482 /* free format : find next sync to compute frame size */ | |
| 2979 | 483 len = MPA_MAX_CODED_FRAME_SIZE - len; |
| 484 if (len > buf_size) | |
| 485 len = buf_size; | |
| 1613 | 486 if (len == 0) { |
| 2979 | 487 /* frame too long: resync */ |
| 1613 | 488 s->frame_size = 0; |
| 2979 | 489 memmove(s->inbuf, s->inbuf + 1, s->inbuf_ptr - s->inbuf - 1); |
| 490 s->inbuf_ptr--; | |
| 1613 | 491 } else { |
| 492 uint8_t *p, *pend; | |
| 493 uint32_t header1; | |
| 494 int padding; | |
| 495 | |
| 496 memcpy(s->inbuf_ptr, buf_ptr, len); | |
| 497 /* check for header */ | |
| 498 p = s->inbuf_ptr - 3; | |
| 499 pend = s->inbuf_ptr + len - 4; | |
| 500 while (p <= pend) { | |
| 501 header = (p[0] << 24) | (p[1] << 16) | | |
| 502 (p[2] << 8) | p[3]; | |
| 503 header1 = (s->inbuf[0] << 24) | (s->inbuf[1] << 16) | | |
| 504 (s->inbuf[2] << 8) | s->inbuf[3]; | |
| 505 /* check with high probability that we have a | |
| 506 valid header */ | |
| 507 if ((header & SAME_HEADER_MASK) == | |
| 508 (header1 & SAME_HEADER_MASK)) { | |
| 509 /* header found: update pointers */ | |
| 510 len = (p + 4) - s->inbuf_ptr; | |
| 511 buf_ptr += len; | |
| 512 buf_size -= len; | |
| 513 s->inbuf_ptr = p; | |
| 514 /* compute frame size */ | |
| 515 s->free_format_next_header = header; | |
| 516 s->free_format_frame_size = s->inbuf_ptr - s->inbuf; | |
| 517 padding = (header1 >> 9) & 1; | |
| 518 if (s->layer == 1) | |
| 519 s->free_format_frame_size -= padding * 4; | |
| 520 else | |
| 521 s->free_format_frame_size -= padding; | |
| 4652 | 522 dprintf(avctx, "free frame size=%d padding=%d\n", |
| 1613 | 523 s->free_format_frame_size, padding); |
| 524 decode_header(s, header1); | |
| 525 goto next_data; | |
| 526 } | |
| 527 p++; | |
| 528 } | |
| 529 /* not found: simply increase pointers */ | |
| 530 buf_ptr += len; | |
| 531 s->inbuf_ptr += len; | |
| 532 buf_size -= len; | |
| 533 } | |
| 2979 | 534 } else |
| 1613 | 535 #endif |
| 536 if (len < s->frame_size) { | |
| 537 if (s->frame_size > MPA_MAX_CODED_FRAME_SIZE) | |
| 538 s->frame_size = MPA_MAX_CODED_FRAME_SIZE; | |
|
3639
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
539 len = FFMIN(s->frame_size - len, buf_size); |
| 2979 | 540 memcpy(s->inbuf_ptr, buf_ptr, len); |
| 541 buf_ptr += len; | |
| 542 s->inbuf_ptr += len; | |
| 543 buf_size -= len; | |
| 544 } | |
|
3639
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
545 |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
546 if(s->frame_size > 0 && buf_ptr - buf == s->inbuf_ptr - s->inbuf |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
547 && buf_size + buf_ptr - buf >= s->frame_size){ |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
548 if(s->header_count > 0){ |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
549 *poutbuf = buf; |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
550 *poutbuf_size = s->frame_size; |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
551 } |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
552 buf_ptr = buf + s->frame_size; |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
553 s->inbuf_ptr = s->inbuf; |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
554 s->frame_size = 0; |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
555 break; |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
556 } |
|
949bc256f1e3
dont copy frame if the whole mp1/2/3 frame is available in one piece in the input
michael
parents:
3456
diff
changeset
|
557 |
| 1613 | 558 // next_data: |
| 2967 | 559 if (s->frame_size > 0 && |
| 1613 | 560 (s->inbuf_ptr - s->inbuf) >= s->frame_size) { |
|
2470
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
561 if(s->header_count > 0){ |
|
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
562 *poutbuf = s->inbuf; |
|
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
563 *poutbuf_size = s->inbuf_ptr - s->inbuf; |
|
06aafb585f69
require a few valid and equal mp3 headers for resync
michael
parents:
2389
diff
changeset
|
564 } |
| 2979 | 565 s->inbuf_ptr = s->inbuf; |
| 566 s->frame_size = 0; | |
| 567 break; | |
| 568 } | |
| 1613 | 569 } |
| 570 return buf_ptr - buf; | |
| 571 } | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
572 #endif /* CONFIG_MPEGAUDIO_PARSER */ |
| 1613 | 573 |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
574 #if defined(CONFIG_AC3_PARSER) || defined(CONFIG_AAC_PARSER) |
| 3098 | 575 /* also used for ADTS AAC */ |
| 1613 | 576 typedef struct AC3ParseContext { |
| 577 uint8_t *inbuf_ptr; | |
| 578 int frame_size; | |
| 3098 | 579 int header_size; |
| 580 int (*sync)(const uint8_t *buf, int *channels, int *sample_rate, | |
| 581 int *bit_rate, int *samples); | |
|
3344
f9d739057d6c
The AAC frame header uses 13 bits for the frame size, so the buffer should
mru
parents:
3104
diff
changeset
|
582 uint8_t inbuf[8192]; /* input buffer */ |
| 1613 | 583 } AC3ParseContext; |
| 584 | |
| 585 #define AC3_HEADER_SIZE 7 | |
| 3104 | 586 #define AAC_HEADER_SIZE 7 |
| 3059 | 587 |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
588 #ifdef CONFIG_AC3_PARSER |
|
4397
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
589 |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
590 static const uint8_t eac3_blocks[4] = { |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
591 1, 2, 3, 6 |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
592 }; |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
593 |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
594 #endif /* CONFIG_AC3_PARSER */ |
| 3059 | 595 |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
596 #ifdef CONFIG_AAC_PARSER |
| 3456 | 597 static const int aac_sample_rates[16] = { |
| 3098 | 598 96000, 88200, 64000, 48000, 44100, 32000, |
| 599 24000, 22050, 16000, 12000, 11025, 8000, 7350 | |
| 600 }; | |
| 601 | |
| 3456 | 602 static const int aac_channels[8] = { |
| 3098 | 603 0, 1, 2, 3, 4, 5, 6, 8 |
| 604 }; | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
605 #endif |
| 3098 | 606 |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
607 #ifdef CONFIG_AC3_PARSER |
| 3059 | 608 static int ac3_sync(const uint8_t *buf, int *channels, int *sample_rate, |
| 3098 | 609 int *bit_rate, int *samples) |
| 3059 | 610 { |
| 4648 | 611 int err; |
| 612 unsigned int fscod, acmod, bsid, lfeon; | |
|
4397
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
613 unsigned int strmtyp, substreamid, frmsiz, fscod2, numblkscod; |
| 3059 | 614 GetBitContext bits; |
| 4648 | 615 AC3HeaderInfo hdr; |
| 3059 | 616 |
| 4648 | 617 err = ff_ac3_parse_header(buf, &hdr); |
| 3059 | 618 |
| 4648 | 619 if(err < 0 && err != -2) |
|
3063
f02d0b59279c
Remove all stray tabs and trailing whitespace, this time for good.
diego
parents:
3059
diff
changeset
|
620 return 0; |
| 3059 | 621 |
| 4648 | 622 bsid = hdr.bsid; |
| 4501 | 623 if(bsid <= 10) { /* Normal AC-3 */ |
| 4648 | 624 *sample_rate = hdr.sample_rate; |
| 625 *bit_rate = hdr.bit_rate; | |
| 626 *channels = hdr.channels; | |
| 627 *samples = AC3_FRAME_SIZE; | |
| 628 return hdr.frame_size; | |
| 4501 | 629 } else if (bsid > 10 && bsid <= 16) { /* Enhanced AC-3 */ |
| 4648 | 630 init_get_bits(&bits, &buf[2], (AC3_HEADER_SIZE-2) * 8); |
|
4397
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
631 strmtyp = get_bits(&bits, 2); |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
632 substreamid = get_bits(&bits, 3); |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
633 |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
634 if (strmtyp != 0 || substreamid != 0) |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
635 return 0; /* Currently don't support additional streams */ |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
636 |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
637 frmsiz = get_bits(&bits, 11) + 1; |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
638 fscod = get_bits(&bits, 2); |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
639 if (fscod == 3) { |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
640 fscod2 = get_bits(&bits, 2); |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
641 numblkscod = 3; |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
642 |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
643 if(fscod2 == 3) |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
644 return 0; |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
645 |
|
4645
056127e5df89
remove redundancy in AC-3 parser by using common tables from ac3tab.h
jbr
parents:
4501
diff
changeset
|
646 *sample_rate = ff_ac3_freqs[fscod2] / 2; |
|
4397
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
647 } else { |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
648 numblkscod = get_bits(&bits, 2); |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
649 |
|
4645
056127e5df89
remove redundancy in AC-3 parser by using common tables from ac3tab.h
jbr
parents:
4501
diff
changeset
|
650 *sample_rate = ff_ac3_freqs[fscod]; |
|
4397
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
651 } |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
652 |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
653 acmod = get_bits(&bits, 3); |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
654 lfeon = get_bits1(&bits); |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
655 |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
656 *samples = eac3_blocks[numblkscod] * 256; |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
657 *bit_rate = frmsiz * (*sample_rate) * 16 / (*samples); |
|
4645
056127e5df89
remove redundancy in AC-3 parser by using common tables from ac3tab.h
jbr
parents:
4501
diff
changeset
|
658 *channels = ff_ac3_channels[acmod] + lfeon; |
|
4397
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
659 |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
660 return frmsiz * 2; |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
661 } |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
662 |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
663 /* Unsupported bitstream version */ |
|
acb9faabab8d
Allows the AC3 parser to read the frame size and codec parameters from E-AC3 streams,
gpoirier
parents:
4310
diff
changeset
|
664 return 0; |
| 3059 | 665 } |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
666 #endif /* CONFIG_AC3_PARSER */ |
| 1613 | 667 |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
668 #ifdef CONFIG_AAC_PARSER |
| 3098 | 669 static int aac_sync(const uint8_t *buf, int *channels, int *sample_rate, |
| 670 int *bit_rate, int *samples) | |
| 671 { | |
| 672 GetBitContext bits; | |
| 673 int size, rdb, ch, sr; | |
| 674 | |
| 675 init_get_bits(&bits, buf, AAC_HEADER_SIZE * 8); | |
| 676 | |
| 677 if(get_bits(&bits, 12) != 0xfff) | |
| 678 return 0; | |
| 679 | |
| 3104 | 680 skip_bits1(&bits); /* id */ |
| 681 skip_bits(&bits, 2); /* layer */ | |
| 682 skip_bits1(&bits); /* protection_absent */ | |
| 683 skip_bits(&bits, 2); /* profile_objecttype */ | |
| 684 sr = get_bits(&bits, 4); /* sample_frequency_index */ | |
| 3098 | 685 if(!aac_sample_rates[sr]) |
| 686 return 0; | |
| 3104 | 687 skip_bits1(&bits); /* private_bit */ |
| 688 ch = get_bits(&bits, 3); /* channel_configuration */ | |
| 3098 | 689 if(!aac_channels[ch]) |
| 690 return 0; | |
| 3104 | 691 skip_bits1(&bits); /* original/copy */ |
| 692 skip_bits1(&bits); /* home */ | |
| 3098 | 693 |
| 694 /* adts_variable_header */ | |
| 3104 | 695 skip_bits1(&bits); /* copyright_identification_bit */ |
| 696 skip_bits1(&bits); /* copyright_identification_start */ | |
| 697 size = get_bits(&bits, 13); /* aac_frame_length */ | |
| 698 skip_bits(&bits, 11); /* adts_buffer_fullness */ | |
| 699 rdb = get_bits(&bits, 2); /* number_of_raw_data_blocks_in_frame */ | |
| 3098 | 700 |
| 701 *channels = aac_channels[ch]; | |
| 702 *sample_rate = aac_sample_rates[sr]; | |
| 703 *samples = (rdb + 1) * 1024; | |
| 704 *bit_rate = size * 8 * *sample_rate / *samples; | |
| 705 | |
| 706 return size; | |
| 707 } | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
708 #endif /* CONFIG_AAC_PARSER */ |
| 3098 | 709 |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
710 #ifdef CONFIG_AC3_PARSER |
| 1613 | 711 static int ac3_parse_init(AVCodecParserContext *s1) |
| 712 { | |
| 713 AC3ParseContext *s = s1->priv_data; | |
| 714 s->inbuf_ptr = s->inbuf; | |
| 3098 | 715 s->header_size = AC3_HEADER_SIZE; |
| 716 s->sync = ac3_sync; | |
| 1613 | 717 return 0; |
| 718 } | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
719 #endif |
| 1613 | 720 |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
721 #ifdef CONFIG_AAC_PARSER |
| 3098 | 722 static int aac_parse_init(AVCodecParserContext *s1) |
| 723 { | |
| 724 AC3ParseContext *s = s1->priv_data; | |
| 725 s->inbuf_ptr = s->inbuf; | |
| 726 s->header_size = AAC_HEADER_SIZE; | |
| 727 s->sync = aac_sync; | |
| 728 return 0; | |
| 729 } | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
730 #endif |
| 3098 | 731 |
| 732 /* also used for ADTS AAC */ | |
| 1613 | 733 static int ac3_parse(AVCodecParserContext *s1, |
| 734 AVCodecContext *avctx, | |
| 2967 | 735 uint8_t **poutbuf, int *poutbuf_size, |
| 1613 | 736 const uint8_t *buf, int buf_size) |
| 737 { | |
| 738 AC3ParseContext *s = s1->priv_data; | |
| 739 const uint8_t *buf_ptr; | |
| 3098 | 740 int len, sample_rate, bit_rate, channels, samples; |
| 1613 | 741 |
| 742 *poutbuf = NULL; | |
| 743 *poutbuf_size = 0; | |
| 744 | |
| 745 buf_ptr = buf; | |
| 746 while (buf_size > 0) { | |
| 747 len = s->inbuf_ptr - s->inbuf; | |
| 748 if (s->frame_size == 0) { | |
| 3098 | 749 /* no header seen : find one. We need at least s->header_size |
| 750 bytes to parse it */ | |
| 751 len = FFMIN(s->header_size - len, buf_size); | |
| 3082 | 752 |
| 1613 | 753 memcpy(s->inbuf_ptr, buf_ptr, len); |
| 754 buf_ptr += len; | |
| 755 s->inbuf_ptr += len; | |
| 756 buf_size -= len; | |
| 3098 | 757 if ((s->inbuf_ptr - s->inbuf) == s->header_size) { |
| 758 len = s->sync(s->inbuf, &channels, &sample_rate, &bit_rate, | |
| 759 &samples); | |
| 1613 | 760 if (len == 0) { |
| 761 /* no sync found : move by one byte (inefficient, but simple!) */ | |
| 3098 | 762 memmove(s->inbuf, s->inbuf + 1, s->header_size - 1); |
| 1613 | 763 s->inbuf_ptr--; |
| 764 } else { | |
| 2979 | 765 s->frame_size = len; |
| 1613 | 766 /* update codec info */ |
| 767 avctx->sample_rate = sample_rate; | |
| 1987 | 768 /* set channels,except if the user explicitly requests 1 or 2 channels, XXX/FIXME this is a bit ugly */ |
| 3098 | 769 if(avctx->codec_id == CODEC_ID_AC3){ |
| 770 if(avctx->channels!=1 && avctx->channels!=2){ | |
| 771 avctx->channels = channels; | |
| 772 } | |
| 773 } else { | |
|
3063
f02d0b59279c
Remove all stray tabs and trailing whitespace, this time for good.
diego
parents:
3059
diff
changeset
|
774 avctx->channels = channels; |
| 1987 | 775 } |
| 2979 | 776 avctx->bit_rate = bit_rate; |
| 3098 | 777 avctx->frame_size = samples; |
| 1613 | 778 } |
| 779 } | |
| 3082 | 780 } else { |
| 781 len = FFMIN(s->frame_size - len, buf_size); | |
| 1613 | 782 |
| 783 memcpy(s->inbuf_ptr, buf_ptr, len); | |
| 784 buf_ptr += len; | |
| 785 s->inbuf_ptr += len; | |
| 786 buf_size -= len; | |
| 3082 | 787 |
| 788 if(s->inbuf_ptr - s->inbuf == s->frame_size){ | |
| 789 *poutbuf = s->inbuf; | |
| 790 *poutbuf_size = s->frame_size; | |
| 791 s->inbuf_ptr = s->inbuf; | |
| 792 s->frame_size = 0; | |
| 793 break; | |
| 794 } | |
| 1613 | 795 } |
| 796 } | |
| 797 return buf_ptr - buf; | |
| 798 } | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
799 #endif /* CONFIG_AC3_PARSER || CONFIG_AAC_PARSER */ |
| 1613 | 800 |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
801 #ifdef CONFIG_MPEG4VIDEO_PARSER |
| 1613 | 802 AVCodecParser mpeg4video_parser = { |
| 803 { CODEC_ID_MPEG4 }, | |
| 804 sizeof(ParseContext1), | |
| 805 mpeg4video_parse_init, | |
| 806 mpeg4video_parse, | |
|
4150
2205aefb22b7
move AVCodecParser prototypes and definitions to parser.h, and move mpegvideo parser to mpeg12.c
bcoudurier
parents:
4146
diff
changeset
|
807 ff_parse1_close, |
|
4175
b3328ed50a5e
make mpeg4video_split public as ff_mpeg4video_split
stefang
parents:
4150
diff
changeset
|
808 ff_mpeg4video_split, |
| 1613 | 809 }; |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
810 #endif |
|
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
811 #ifdef CONFIG_MPEGAUDIO_PARSER |
| 1613 | 812 AVCodecParser mpegaudio_parser = { |
| 813 { CODEC_ID_MP2, CODEC_ID_MP3 }, | |
| 814 sizeof(MpegAudioParseContext), | |
| 815 mpegaudio_parse_init, | |
| 816 mpegaudio_parse, | |
| 817 NULL, | |
| 818 }; | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
819 #endif |
|
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
820 #ifdef CONFIG_AC3_PARSER |
| 1613 | 821 AVCodecParser ac3_parser = { |
| 822 { CODEC_ID_AC3 }, | |
| 823 sizeof(AC3ParseContext), | |
| 824 ac3_parse_init, | |
| 825 ac3_parse, | |
| 826 NULL, | |
| 827 }; | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
828 #endif |
|
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
829 #ifdef CONFIG_AAC_PARSER |
| 3098 | 830 AVCodecParser aac_parser = { |
| 831 { CODEC_ID_AAC }, | |
| 832 sizeof(AC3ParseContext), | |
| 833 aac_parse_init, | |
| 834 ac3_parse, | |
| 835 NULL, | |
| 836 }; | |
|
3455
cc4b4ea83e29
--enable/disable parsers. Warning: some combinations are broken.
mru
parents:
3432
diff
changeset
|
837 #endif |
