]> git.sesse.net Git - ffmpeg/blob - libavcodec/h264_parser.c
Merge remote-tracking branch 'shariman/wmall'
[ffmpeg] / libavcodec / h264_parser.c
1 /*
2  * H.26L/H.264/AVC/JVT/14496-10/... parser
3  * Copyright (c) 2003 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg 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.
11  *
12  * FFmpeg 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.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * H.264 / AVC / MPEG4 part10 parser.
25  * @author Michael Niedermayer <michaelni@gmx.at>
26  */
27
28 #include "parser.h"
29 #include "h264data.h"
30 #include "golomb.h"
31
32 #include <assert.h>
33
34
35 static int ff_h264_find_frame_end(H264Context *h, const uint8_t *buf, int buf_size)
36 {
37     int i, j;
38     uint32_t state;
39     ParseContext *pc = &(h->s.parse_context);
40     int next_avc= h->is_avc ? 0 : buf_size;
41
42 //printf("first %02X%02X%02X%02X\n", buf[0], buf[1],buf[2],buf[3]);
43 //    mb_addr= pc->mb_addr - 1;
44     state= pc->state;
45     if(state>13)
46         state= 7;
47
48     if(h->is_avc && !h->nal_length_size)
49         av_log(h->s.avctx, AV_LOG_ERROR, "AVC-parser: nal length size invalid\n");
50
51     for(i=0; i<buf_size; i++){
52         if(i >= next_avc) {
53             int nalsize = 0;
54             i = next_avc;
55             for(j = 0; j < h->nal_length_size; j++)
56                 nalsize = (nalsize << 8) | buf[i++];
57             if(nalsize <= 0 || nalsize > buf_size - i){
58                 av_log(h->s.avctx, AV_LOG_ERROR, "AVC-parser: nal size %d remaining %d\n", nalsize, buf_size - i);
59                 return buf_size;
60             }
61             next_avc= i + nalsize;
62             state= 5;
63         }
64
65         if(state==7){
66 #if HAVE_FAST_UNALIGNED
67         /* we check i<buf_size instead of i+3/7 because its simpler
68          * and there should be FF_INPUT_BUFFER_PADDING_SIZE bytes at the end
69          */
70 #    if HAVE_FAST_64BIT
71             while(i<next_avc && !((~*(const uint64_t*)(buf+i) & (*(const uint64_t*)(buf+i) - 0x0101010101010101ULL)) & 0x8080808080808080ULL))
72                 i+=8;
73 #    else
74             while(i<next_avc && !((~*(const uint32_t*)(buf+i) & (*(const uint32_t*)(buf+i) - 0x01010101U)) & 0x80808080U))
75                 i+=4;
76 #    endif
77 #endif
78             for(; i<next_avc; i++){
79                 if(!buf[i]){
80                     state=2;
81                     break;
82                 }
83             }
84         }else if(state<=2){
85             if(buf[i]==1)   state^= 5; //2->7, 1->4, 0->5
86             else if(buf[i]) state = 7;
87             else            state>>=1; //2->1, 1->0, 0->0
88         }else if(state<=5){
89             int v= buf[i] & 0x1F;
90             if(v==6 || v==7 || v==8 || v==9){
91                 if(pc->frame_start_found){
92                     i++;
93                     goto found;
94                 }
95             }else if(v==1 || v==2 || v==5){
96                 state+=8;
97                 continue;
98             }
99             state= 7;
100         }else{
101             h->parse_history[h->parse_history_count++]= buf[i];
102             if(h->parse_history_count>3){
103                 unsigned int mb, last_mb= h->parse_last_mb;
104                 GetBitContext gb;
105
106                 init_get_bits(&gb, h->parse_history, 8*h->parse_history_count);
107                 h->parse_history_count=0;
108                 mb= get_ue_golomb_long(&gb);
109                 last_mb= h->parse_last_mb;
110                 h->parse_last_mb= mb;
111                 if(pc->frame_start_found){
112                     if(mb <= last_mb)
113                         goto found;
114                 }else
115                     pc->frame_start_found = 1;
116                 state= 7;
117             }
118         }
119     }
120     pc->state= state;
121     if(h->is_avc)
122         return next_avc;
123     return END_NOT_FOUND;
124
125 found:
126     pc->state=7;
127     pc->frame_start_found= 0;
128     if(h->is_avc)
129         return next_avc;
130     return i-(state&5) - 3*(state>7);
131 }
132
133 /**
134  * Parse NAL units of found picture and decode some basic information.
135  *
136  * @param s parser context.
137  * @param avctx codec context.
138  * @param buf buffer with field/frame data.
139  * @param buf_size size of the buffer.
140  */
141 static inline int parse_nal_units(AVCodecParserContext *s,
142                                   AVCodecContext *avctx,
143                                   const uint8_t *buf, int buf_size)
144 {
145     H264Context *h = s->priv_data;
146     const uint8_t *buf_end = buf + buf_size;
147     unsigned int pps_id;
148     unsigned int slice_type;
149     int state = -1;
150     const uint8_t *ptr;
151     int q264 = buf_size >=4 && !memcmp("Q264", buf, 4);
152
153     /* set some sane default values */
154     s->pict_type = AV_PICTURE_TYPE_I;
155     s->key_frame = 0;
156
157     h->s.avctx= avctx;
158     h->sei_recovery_frame_cnt = -1;
159     h->sei_dpb_output_delay         =  0;
160     h->sei_cpb_removal_delay        = -1;
161     h->sei_buffering_period_present =  0;
162
163     if (!buf_size)
164         return 0;
165
166     for(;;) {
167         int src_length, dst_length, consumed;
168         buf = avpriv_mpv_find_start_code(buf, buf_end, &state);
169         if(buf >= buf_end)
170             break;
171         --buf;
172         src_length = buf_end - buf;
173         switch (state & 0x1f) {
174         case NAL_SLICE:
175         case NAL_IDR_SLICE:
176             // Do not walk the whole buffer just to decode slice header
177             if (src_length > 20)
178                 src_length = 20;
179             break;
180         }
181         ptr= ff_h264_decode_nal(h, buf, &dst_length, &consumed, src_length);
182         if (ptr==NULL || dst_length < 0)
183             break;
184
185         init_get_bits(&h->s.gb, ptr, 8*dst_length);
186         switch(h->nal_unit_type) {
187         case NAL_SPS:
188             ff_h264_decode_seq_parameter_set(h);
189             break;
190         case NAL_PPS:
191             ff_h264_decode_picture_parameter_set(h, h->s.gb.size_in_bits);
192             break;
193         case NAL_SEI:
194             ff_h264_decode_sei(h);
195             break;
196         case NAL_IDR_SLICE:
197             s->key_frame = 1;
198             /* fall through */
199         case NAL_SLICE:
200             get_ue_golomb_long(&h->s.gb);  // skip first_mb_in_slice
201             slice_type = get_ue_golomb_31(&h->s.gb);
202             s->pict_type = golomb_to_pict_type[slice_type % 5];
203             if (h->sei_recovery_frame_cnt >= 0) {
204                 /* key frame, since recovery_frame_cnt is set */
205                 s->key_frame = 1;
206             }
207             pps_id= get_ue_golomb(&h->s.gb);
208             if(pps_id>=MAX_PPS_COUNT) {
209                 av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n");
210                 return -1;
211             }
212             if(!h->pps_buffers[pps_id]) {
213                 av_log(h->s.avctx, AV_LOG_ERROR, "non-existing PPS referenced\n");
214                 return -1;
215             }
216             h->pps= *h->pps_buffers[pps_id];
217             if(!h->sps_buffers[h->pps.sps_id]) {
218                 av_log(h->s.avctx, AV_LOG_ERROR, "non-existing SPS referenced\n");
219                 return -1;
220             }
221             h->sps = *h->sps_buffers[h->pps.sps_id];
222             h->frame_num = get_bits(&h->s.gb, h->sps.log2_max_frame_num);
223
224             avctx->profile = ff_h264_get_profile(&h->sps);
225             avctx->level   = h->sps.level_idc;
226
227             if(h->sps.frame_mbs_only_flag){
228                 h->s.picture_structure= PICT_FRAME;
229             }else{
230                 if(get_bits1(&h->s.gb)) { //field_pic_flag
231                     h->s.picture_structure= PICT_TOP_FIELD + get_bits1(&h->s.gb); //bottom_field_flag
232                 } else {
233                     h->s.picture_structure= PICT_FRAME;
234                 }
235             }
236
237             if(h->sps.pic_struct_present_flag) {
238                 switch (h->sei_pic_struct) {
239                     case SEI_PIC_STRUCT_TOP_FIELD:
240                     case SEI_PIC_STRUCT_BOTTOM_FIELD:
241                         s->repeat_pict = 0;
242                         break;
243                     case SEI_PIC_STRUCT_FRAME:
244                     case SEI_PIC_STRUCT_TOP_BOTTOM:
245                     case SEI_PIC_STRUCT_BOTTOM_TOP:
246                         s->repeat_pict = 1;
247                         break;
248                     case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
249                     case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
250                         s->repeat_pict = 2;
251                         break;
252                     case SEI_PIC_STRUCT_FRAME_DOUBLING:
253                         s->repeat_pict = 3;
254                         break;
255                     case SEI_PIC_STRUCT_FRAME_TRIPLING:
256                         s->repeat_pict = 5;
257                         break;
258                     default:
259                         s->repeat_pict = h->s.picture_structure == PICT_FRAME ? 1 : 0;
260                         break;
261                 }
262             } else {
263                 s->repeat_pict = h->s.picture_structure == PICT_FRAME ? 1 : 0;
264             }
265
266             return 0; /* no need to evaluate the rest */
267         }
268         buf += consumed;
269     }
270     if (q264)
271         return 0;
272     /* didn't find a picture! */
273     av_log(h->s.avctx, AV_LOG_ERROR, "missing picture in access unit with size %d\n", buf_size);
274     return -1;
275 }
276
277 static int h264_parse(AVCodecParserContext *s,
278                       AVCodecContext *avctx,
279                       const uint8_t **poutbuf, int *poutbuf_size,
280                       const uint8_t *buf, int buf_size)
281 {
282     H264Context *h = s->priv_data;
283     ParseContext *pc = &h->s.parse_context;
284     int next;
285
286     if (!h->got_first) {
287         h->got_first = 1;
288         if (avctx->extradata_size) {
289             h->s.avctx = avctx;
290             // must be done like in decoder, otherwise opening the parser,
291             // letting it create extradata and then closing and opening again
292             // will cause has_b_frames to be always set.
293             // Note that estimate_timings_from_pts does exactly this.
294             if (!avctx->has_b_frames)
295                 h->s.low_delay = 1;
296             ff_h264_decode_extradata(h, avctx->extradata, avctx->extradata_size);
297         }
298     }
299
300     if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){
301         next= buf_size;
302     }else{
303         next= ff_h264_find_frame_end(h, buf, buf_size);
304
305         if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
306             *poutbuf = NULL;
307             *poutbuf_size = 0;
308             return buf_size;
309         }
310
311         if(next<0 && next != END_NOT_FOUND){
312             assert(pc->last_index + next >= 0 );
313             ff_h264_find_frame_end(h, &pc->buffer[pc->last_index + next], -next); //update state
314         }
315     }
316
317     if(!h->is_avc){
318     parse_nal_units(s, avctx, buf, buf_size);
319
320     if (h->sei_cpb_removal_delay >= 0) {
321         s->dts_sync_point    = h->sei_buffering_period_present;
322         s->dts_ref_dts_delta = h->sei_cpb_removal_delay;
323         s->pts_dts_delta     = h->sei_dpb_output_delay;
324     } else {
325         s->dts_sync_point    = INT_MIN;
326         s->dts_ref_dts_delta = INT_MIN;
327         s->pts_dts_delta     = INT_MIN;
328     }
329
330     if (s->flags & PARSER_FLAG_ONCE) {
331         s->flags &= PARSER_FLAG_COMPLETE_FRAMES;
332     }
333     }
334
335     *poutbuf = buf;
336     *poutbuf_size = buf_size;
337     return next;
338 }
339
340 static int h264_split(AVCodecContext *avctx,
341                       const uint8_t *buf, int buf_size)
342 {
343     int i;
344     uint32_t state = -1;
345     int has_sps= 0;
346
347     for(i=0; i<=buf_size; i++){
348         if((state&0xFFFFFF1F) == 0x107)
349             has_sps=1;
350 /*        if((state&0xFFFFFF1F) == 0x101 || (state&0xFFFFFF1F) == 0x102 || (state&0xFFFFFF1F) == 0x105){
351         }*/
352         if((state&0xFFFFFF00) == 0x100 && (state&0xFFFFFF1F) != 0x107 && (state&0xFFFFFF1F) != 0x108 && (state&0xFFFFFF1F) != 0x109){
353             if(has_sps){
354                 while(i>4 && buf[i-5]==0) i--;
355                 return i-4;
356             }
357         }
358         if (i<buf_size)
359             state= (state<<8) | buf[i];
360     }
361     return 0;
362 }
363
364 static void close(AVCodecParserContext *s)
365 {
366     H264Context *h = s->priv_data;
367     ParseContext *pc = &h->s.parse_context;
368
369     av_free(pc->buffer);
370     ff_h264_free_context(h);
371 }
372
373 static int init(AVCodecParserContext *s)
374 {
375     H264Context *h = s->priv_data;
376     h->thread_context[0] = h;
377     return 0;
378 }
379
380 AVCodecParser ff_h264_parser = {
381     .codec_ids      = { CODEC_ID_H264 },
382     .priv_data_size = sizeof(H264Context),
383     .parser_init    = init,
384     .parser_parse   = h264_parse,
385     .parser_close   = close,
386     .split          = h264_split,
387 };