X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fflvdec.c;h=3640d2984717f621066a13275f1328da4cf4d524;hb=befe044bb9561c9d7d6559db06bba375e82a4b66;hp=485ee9636982ae3a00952a43d5c8f441f3a27dce;hpb=2912e87a6c9264d556734e2bf94a99c64cf9b102;p=ffmpeg diff --git a/libavcodec/flvdec.c b/libavcodec/flvdec.c index 485ee963698..3640d298471 100644 --- a/libavcodec/flvdec.c +++ b/libavcodec/flvdec.c @@ -88,10 +88,10 @@ int ff_flv_decode_picture_header(MpegEncContext *s) s->width = width; s->height = height; - s->pict_type = FF_I_TYPE + get_bits(&s->gb, 2); - s->dropable= s->pict_type > FF_P_TYPE; - if (s->dropable) - s->pict_type = FF_P_TYPE; + s->pict_type = AV_PICTURE_TYPE_I + get_bits(&s->gb, 2); + s->droppable = s->pict_type > AV_PICTURE_TYPE_P; + if (s->droppable) + s->pict_type = AV_PICTURE_TYPE_P; skip_bits1(&s->gb); /* deblocking flag */ s->chroma_qscale= s->qscale = get_bits(&s->gb, 5); @@ -109,7 +109,8 @@ int ff_flv_decode_picture_header(MpegEncContext *s) if(s->avctx->debug & FF_DEBUG_PICT_INFO){ av_log(s->avctx, AV_LOG_DEBUG, "%c esc_type:%d, qp:%d num:%d\n", - s->dropable ? 'D' : av_get_pict_type_char(s->pict_type), s->h263_flv-1, s->qscale, s->picture_number); + s->droppable ? 'D' : av_get_picture_type_char(s->pict_type), + s->h263_flv - 1, s->qscale, s->picture_number); } s->y_dc_scale_table= @@ -119,16 +120,14 @@ int ff_flv_decode_picture_header(MpegEncContext *s) } AVCodec ff_flv_decoder = { - "flv", - AVMEDIA_TYPE_VIDEO, - CODEC_ID_FLV1, - sizeof(MpegEncContext), - ff_h263_decode_init, - NULL, - ff_h263_decode_end, - ff_h263_decode_frame, - CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, - .max_lowres= 3, - .long_name= NULL_IF_CONFIG_SMALL("Flash Video (FLV) / Sorenson Spark / Sorenson H.263"), - .pix_fmts= ff_pixfmt_list_420, + .name = "flv", + .type = AVMEDIA_TYPE_VIDEO, + .id = AV_CODEC_ID_FLV1, + .priv_data_size = sizeof(MpegEncContext), + .init = ff_h263_decode_init, + .close = ff_h263_decode_end, + .decode = ff_h263_decode_frame, + .capabilities = CODEC_CAP_DRAW_HORIZ_BAND | CODEC_CAP_DR1, + .long_name = NULL_IF_CONFIG_SMALL("FLV / Sorenson Spark / Sorenson H.263 (Flash Video)"), + .pix_fmts = ff_pixfmt_list_420, };