2 * H.26L/H.264/AVC/JVT/14496-10/... parser
3 * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 * H.264 / AVC / MPEG4 part10 parser.
25 * @author Michael Niedermayer <michaelni@gmx.at>
35 static int ff_h264_find_frame_end(H264Context *h, const uint8_t *buf, int buf_size)
39 ParseContext *pc = &(h->s.parse_context);
40 //printf("first %02X%02X%02X%02X\n", buf[0], buf[1],buf[2],buf[3]);
41 // mb_addr= pc->mb_addr - 1;
46 for(i=0; i<buf_size; i++){
48 #if HAVE_FAST_UNALIGNED
49 /* we check i<buf_size instead of i+3/7 because its simpler
50 * and there should be FF_INPUT_BUFFER_PADDING_SIZE bytes at the end
53 while(i<buf_size && !((~*(const uint64_t*)(buf+i) & (*(const uint64_t*)(buf+i) - 0x0101010101010101ULL)) & 0x8080808080808080ULL))
56 while(i<buf_size && !((~*(const uint32_t*)(buf+i) & (*(const uint32_t*)(buf+i) - 0x01010101U)) & 0x80808080U))
60 for(; i<buf_size; i++){
67 if(buf[i]==1) state^= 5; //2->7, 1->4, 0->5
68 else if(buf[i]) state = 7;
69 else state>>=1; //2->1, 1->0, 0->0
72 if(v==6 || v==7 || v==8 || v==9){
73 if(pc->frame_start_found){
77 }else if(v==1 || v==2 || v==5){
78 if(pc->frame_start_found){
82 pc->frame_start_found = 1;
96 pc->frame_start_found= 0;
101 * Parse NAL units of found picture and decode some basic information.
103 * @param s parser context.
104 * @param avctx codec context.
105 * @param buf buffer with field/frame data.
106 * @param buf_size size of the buffer.
108 static inline int parse_nal_units(AVCodecParserContext *s,
109 AVCodecContext *avctx,
110 const uint8_t *buf, int buf_size)
112 H264Context *h = s->priv_data;
113 const uint8_t *buf_end = buf + buf_size;
115 unsigned int slice_type;
119 /* set some sane default values */
120 s->pict_type = AV_PICTURE_TYPE_I;
124 h->sei_recovery_frame_cnt = -1;
125 h->sei_dpb_output_delay = 0;
126 h->sei_cpb_removal_delay = -1;
127 h->sei_buffering_period_present = 0;
133 int src_length, dst_length, consumed;
134 buf = avpriv_mpv_find_start_code(buf, buf_end, &state);
138 src_length = buf_end - buf;
139 switch (state & 0x1f) {
142 // Do not walk the whole buffer just to decode slice header
147 ptr= ff_h264_decode_nal(h, buf, &dst_length, &consumed, src_length);
148 if (ptr==NULL || dst_length < 0)
151 init_get_bits(&h->s.gb, ptr, 8*dst_length);
152 switch(h->nal_unit_type) {
154 ff_h264_decode_seq_parameter_set(h);
157 ff_h264_decode_picture_parameter_set(h, h->s.gb.size_in_bits);
160 ff_h264_decode_sei(h);
166 get_ue_golomb(&h->s.gb); // skip first_mb_in_slice
167 slice_type = get_ue_golomb_31(&h->s.gb);
168 s->pict_type = golomb_to_pict_type[slice_type % 5];
169 if (h->sei_recovery_frame_cnt >= 0) {
170 /* key frame, since recovery_frame_cnt is set */
173 pps_id= get_ue_golomb(&h->s.gb);
174 if(pps_id>=MAX_PPS_COUNT) {
175 av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n");
178 if(!h->pps_buffers[pps_id]) {
179 av_log(h->s.avctx, AV_LOG_ERROR, "non-existing PPS referenced\n");
182 h->pps= *h->pps_buffers[pps_id];
183 if(!h->sps_buffers[h->pps.sps_id]) {
184 av_log(h->s.avctx, AV_LOG_ERROR, "non-existing SPS referenced\n");
187 h->sps = *h->sps_buffers[h->pps.sps_id];
188 h->frame_num = get_bits(&h->s.gb, h->sps.log2_max_frame_num);
190 avctx->profile = ff_h264_get_profile(&h->sps);
191 avctx->level = h->sps.level_idc;
193 if(h->sps.frame_mbs_only_flag){
194 h->s.picture_structure= PICT_FRAME;
196 if(get_bits1(&h->s.gb)) { //field_pic_flag
197 h->s.picture_structure= PICT_TOP_FIELD + get_bits1(&h->s.gb); //bottom_field_flag
199 h->s.picture_structure= PICT_FRAME;
203 if(h->sps.pic_struct_present_flag) {
204 switch (h->sei_pic_struct) {
205 case SEI_PIC_STRUCT_TOP_FIELD:
206 case SEI_PIC_STRUCT_BOTTOM_FIELD:
209 case SEI_PIC_STRUCT_FRAME:
210 case SEI_PIC_STRUCT_TOP_BOTTOM:
211 case SEI_PIC_STRUCT_BOTTOM_TOP:
214 case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
215 case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
218 case SEI_PIC_STRUCT_FRAME_DOUBLING:
221 case SEI_PIC_STRUCT_FRAME_TRIPLING:
225 s->repeat_pict = h->s.picture_structure == PICT_FRAME ? 1 : 0;
229 s->repeat_pict = h->s.picture_structure == PICT_FRAME ? 1 : 0;
232 return 0; /* no need to evaluate the rest */
236 /* didn't find a picture! */
237 av_log(h->s.avctx, AV_LOG_ERROR, "missing picture in access unit\n");
241 static int h264_parse(AVCodecParserContext *s,
242 AVCodecContext *avctx,
243 const uint8_t **poutbuf, int *poutbuf_size,
244 const uint8_t *buf, int buf_size)
246 H264Context *h = s->priv_data;
247 ParseContext *pc = &h->s.parse_context;
252 if (avctx->extradata_size) {
254 // must be done like in the decoder.
255 // otherwise opening the parser, creating extradata,
256 // and then closing and opening again
257 // will cause has_b_frames to be always set.
258 // NB: estimate_timings_from_pts behaves exactly like this.
259 if (!avctx->has_b_frames)
261 ff_h264_decode_extradata(h);
265 if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){
268 next= ff_h264_find_frame_end(h, buf, buf_size);
270 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
276 if(next<0 && next != END_NOT_FOUND){
277 assert(pc->last_index + next >= 0 );
278 ff_h264_find_frame_end(h, &pc->buffer[pc->last_index + next], -next); //update state
282 parse_nal_units(s, avctx, buf, buf_size);
284 if (h->sei_cpb_removal_delay >= 0) {
285 s->dts_sync_point = h->sei_buffering_period_present;
286 s->dts_ref_dts_delta = h->sei_cpb_removal_delay;
287 s->pts_dts_delta = h->sei_dpb_output_delay;
289 s->dts_sync_point = INT_MIN;
290 s->dts_ref_dts_delta = INT_MIN;
291 s->pts_dts_delta = INT_MIN;
294 if (s->flags & PARSER_FLAG_ONCE) {
295 s->flags &= PARSER_FLAG_COMPLETE_FRAMES;
299 *poutbuf_size = buf_size;
303 static int h264_split(AVCodecContext *avctx,
304 const uint8_t *buf, int buf_size)
310 for(i=0; i<=buf_size; i++){
311 if((state&0xFFFFFF1F) == 0x107)
313 /* if((state&0xFFFFFF1F) == 0x101 || (state&0xFFFFFF1F) == 0x102 || (state&0xFFFFFF1F) == 0x105){
315 if((state&0xFFFFFF00) == 0x100 && (state&0xFFFFFF1F) != 0x107 && (state&0xFFFFFF1F) != 0x108 && (state&0xFFFFFF1F) != 0x109){
317 while(i>4 && buf[i-5]==0) i--;
322 state= (state<<8) | buf[i];
327 static void close(AVCodecParserContext *s)
329 H264Context *h = s->priv_data;
330 ParseContext *pc = &h->s.parse_context;
333 ff_h264_free_context(h);
336 static int init(AVCodecParserContext *s)
338 H264Context *h = s->priv_data;
339 h->thread_context[0] = h;
340 h->s.slice_context_count = 1;
344 AVCodecParser ff_h264_parser = {
345 .codec_ids = { CODEC_ID_H264 },
346 .priv_data_size = sizeof(H264Context),
348 .parser_parse = h264_parse,
349 .parser_close = close,