~ubuntu-branches/ubuntu/lucid/ffmpeg/lucid-security

« back to all changes in this revision

Viewing changes to libavcodec/h264_parser.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-03-13 09:18:28 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090313091828-n4ktby5eca487uhv
Tags: 3:0.svn20090303-1ubuntu1+unstripped1
merge from ubuntu.jaunty branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include "parser.h"
29
29
#include "h264_parser.h"
 
30
#include "h264data.h"
 
31
#include "golomb.h"
30
32
 
31
33
#include <assert.h>
32
34
 
49
51
         * and there should be FF_INPUT_BUFFER_PADDING_SIZE bytes at the end
50
52
         */
51
53
#    if HAVE_FAST_64BIT
52
 
            while(i<buf_size && !((~*(uint64_t*)(buf+i) & (*(uint64_t*)(buf+i) - 0x0101010101010101ULL)) & 0x8080808080808080ULL))
 
54
            while(i<buf_size && !((~*(const uint64_t*)(buf+i) & (*(const uint64_t*)(buf+i) - 0x0101010101010101ULL)) & 0x8080808080808080ULL))
53
55
                i+=8;
54
56
#    else
55
 
            while(i<buf_size && !((~*(uint32_t*)(buf+i) & (*(uint32_t*)(buf+i) - 0x01010101U)) & 0x80808080U))
 
57
            while(i<buf_size && !((~*(const uint32_t*)(buf+i) & (*(const uint32_t*)(buf+i) - 0x01010101U)) & 0x80808080U))
56
58
                i+=4;
57
59
#    endif
58
60
#endif
96
98
    return i-(state&5);
97
99
}
98
100
 
 
101
/*!
 
102
 * Parse NAL units of found picture and decode some basic information.
 
103
 *
 
104
 * @param s parser context.
 
105
 * @param avctx codec context.
 
106
 * @param buf buffer with field/frame data.
 
107
 * @param buf_size size of the buffer.
 
108
 */
 
109
static inline int parse_nal_units(AVCodecParserContext *s,
 
110
                                  AVCodecContext *avctx,
 
111
                                  const uint8_t *buf, int buf_size)
 
112
{
 
113
    H264Context *h = s->priv_data;
 
114
    const uint8_t *buf_end = buf + buf_size;
 
115
    unsigned int pps_id;
 
116
    unsigned int slice_type;
 
117
    int state;
 
118
    const uint8_t *ptr;
 
119
 
 
120
    /* set some sane default values */
 
121
    s->pict_type = FF_I_TYPE;
 
122
    s->key_frame = 0;
 
123
 
 
124
    h->s.avctx= avctx;
 
125
    h->sei_recovery_frame_cnt = -1;
 
126
    h->sei_dpb_output_delay         =  0;
 
127
    h->sei_cpb_removal_delay        = -1;
 
128
    h->sei_buffering_period_present =  0;
 
129
 
 
130
    for(;;) {
 
131
        int src_length, dst_length, consumed;
 
132
        buf = ff_find_start_code(buf, buf_end, &state);
 
133
        if(buf >= buf_end)
 
134
            break;
 
135
        --buf;
 
136
        src_length = buf_end - buf;
 
137
        switch (state & 0x1f) {
 
138
        case NAL_SLICE:
 
139
        case NAL_IDR_SLICE:
 
140
            // Do not walk the whole buffer just to decode slice header
 
141
            if (src_length > 20)
 
142
                src_length = 20;
 
143
            break;
 
144
        }
 
145
        ptr= ff_h264_decode_nal(h, buf, &dst_length, &consumed, src_length);
 
146
        if (ptr==NULL || dst_length < 0)
 
147
            break;
 
148
 
 
149
        init_get_bits(&h->s.gb, ptr, 8*dst_length);
 
150
        switch(h->nal_unit_type) {
 
151
        case NAL_SPS:
 
152
            ff_h264_decode_seq_parameter_set(h);
 
153
            break;
 
154
        case NAL_PPS:
 
155
            ff_h264_decode_picture_parameter_set(h, h->s.gb.size_in_bits);
 
156
            break;
 
157
        case NAL_SEI:
 
158
            ff_h264_decode_sei(h);
 
159
            break;
 
160
        case NAL_IDR_SLICE:
 
161
            s->key_frame = 1;
 
162
            /* fall through */
 
163
        case NAL_SLICE:
 
164
            get_ue_golomb(&h->s.gb);  // skip first_mb_in_slice
 
165
            slice_type = get_ue_golomb_31(&h->s.gb);
 
166
            s->pict_type = golomb_to_pict_type[slice_type % 5];
 
167
            if (h->sei_recovery_frame_cnt >= 0) {
 
168
                /* key frame, since recovery_frame_cnt is set */
 
169
                s->key_frame = 1;
 
170
            }
 
171
            pps_id= get_ue_golomb(&h->s.gb);
 
172
            if(pps_id>=MAX_PPS_COUNT) {
 
173
                av_log(h->s.avctx, AV_LOG_ERROR, "pps_id out of range\n");
 
174
                return -1;
 
175
            }
 
176
            if(!h->pps_buffers[pps_id]) {
 
177
                av_log(h->s.avctx, AV_LOG_ERROR, "non-existing PPS referenced\n");
 
178
                return -1;
 
179
            }
 
180
            h->pps= *h->pps_buffers[pps_id];
 
181
            if(!h->sps_buffers[h->pps.sps_id]) {
 
182
                av_log(h->s.avctx, AV_LOG_ERROR, "non-existing SPS referenced\n");
 
183
                return -1;
 
184
            }
 
185
            h->sps = *h->sps_buffers[h->pps.sps_id];
 
186
            h->frame_num = get_bits(&h->s.gb, h->sps.log2_max_frame_num);
 
187
 
 
188
            if(h->sps.frame_mbs_only_flag){
 
189
                h->s.picture_structure= PICT_FRAME;
 
190
            }else{
 
191
                if(get_bits1(&h->s.gb)) { //field_pic_flag
 
192
                    h->s.picture_structure= PICT_TOP_FIELD + get_bits1(&h->s.gb); //bottom_field_flag
 
193
                } else {
 
194
                    h->s.picture_structure= PICT_FRAME;
 
195
                }
 
196
            }
 
197
 
 
198
            if(h->sps.pic_struct_present_flag) {
 
199
                switch (h->sei_pic_struct) {
 
200
                    case SEI_PIC_STRUCT_TOP_FIELD:
 
201
                    case SEI_PIC_STRUCT_BOTTOM_FIELD:
 
202
                        s->repeat_pict = 0;
 
203
                        break;
 
204
                    case SEI_PIC_STRUCT_FRAME:
 
205
                    case SEI_PIC_STRUCT_TOP_BOTTOM:
 
206
                    case SEI_PIC_STRUCT_BOTTOM_TOP:
 
207
                        s->repeat_pict = 1;
 
208
                        break;
 
209
                    case SEI_PIC_STRUCT_TOP_BOTTOM_TOP:
 
210
                    case SEI_PIC_STRUCT_BOTTOM_TOP_BOTTOM:
 
211
                        s->repeat_pict = 2;
 
212
                        break;
 
213
                    case SEI_PIC_STRUCT_FRAME_DOUBLING:
 
214
                        s->repeat_pict = 3;
 
215
                        break;
 
216
                    case SEI_PIC_STRUCT_FRAME_TRIPLING:
 
217
                        s->repeat_pict = 5;
 
218
                        break;
 
219
                    default:
 
220
                        s->repeat_pict = h->s.picture_structure == PICT_FRAME ? 1 : 0;
 
221
                        break;
 
222
                }
 
223
            } else {
 
224
                s->repeat_pict = h->s.picture_structure == PICT_FRAME ? 1 : 0;
 
225
            }
 
226
 
 
227
            return 0; /* no need to evaluate the rest */
 
228
        }
 
229
        buf += consumed;
 
230
    }
 
231
    /* didn't find a picture! */
 
232
    av_log(h->s.avctx, AV_LOG_ERROR, "missing picture in access unit\n");
 
233
    return -1;
 
234
}
 
235
 
99
236
static int h264_parse(AVCodecParserContext *s,
100
237
                      AVCodecContext *avctx,
101
238
                      const uint8_t **poutbuf, int *poutbuf_size,
120
257
            assert(pc->last_index + next >= 0 );
121
258
            ff_h264_find_frame_end(h, &pc->buffer[pc->last_index + next], -next); //update state
122
259
        }
 
260
 
 
261
        parse_nal_units(s, avctx, buf, buf_size);
 
262
 
 
263
        if (h->sei_cpb_removal_delay >= 0) {
 
264
            s->dts_sync_point    = h->sei_buffering_period_present;
 
265
            s->dts_ref_dts_delta = h->sei_cpb_removal_delay;
 
266
            s->pts_dts_delta     = h->sei_dpb_output_delay;
 
267
        } else {
 
268
            s->dts_sync_point    = INT_MIN;
 
269
            s->dts_ref_dts_delta = INT_MIN;
 
270
            s->pts_dts_delta     = INT_MIN;
 
271
        }
123
272
    }
124
273
 
125
274
    *poutbuf = buf;