Revision ce5e49b0 libavcodec/flashsvenc.c
libavcodec/flashsvenc.c | ||
---|---|---|
260 | 260 |
|
261 | 261 |
//mark the frame type so the muxer can mux it correctly |
262 | 262 |
if (I_frame) { |
263 |
p->pict_type = FF_I_TYPE;
|
|
263 |
p->pict_type = AV_PICTURE_TYPE_I;
|
|
264 | 264 |
p->key_frame = 1; |
265 | 265 |
s->last_key_frame = avctx->frame_number; |
266 | 266 |
av_log(avctx, AV_LOG_DEBUG, "Inserting key frame at frame %d\n", avctx->frame_number); |
267 | 267 |
} else { |
268 |
p->pict_type = FF_P_TYPE;
|
|
268 |
p->pict_type = AV_PICTURE_TYPE_P;
|
|
269 | 269 |
p->key_frame = 0; |
270 | 270 |
} |
271 | 271 |
|
Also available in: Unified diff