From 6209669de4a0aa056ae05b0a2c78eaf2ca489b23 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 29 Apr 2011 16:37:23 +0200 Subject: Replace deprecated av_get_pict_type_char() with av_get_picture_type_char(). Signed-off-by: Diego Biurrun --- libavcodec/flvdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/flvdec.c') diff --git a/libavcodec/flvdec.c b/libavcodec/flvdec.c index 485ee96369..5bc7a29ba5 100644 --- a/libavcodec/flvdec.c +++ b/libavcodec/flvdec.c @@ -109,7 +109,7 @@ 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->dropable ? 'D' : av_get_picture_type_char(s->pict_type), s->h263_flv-1, s->qscale, s->picture_number); } s->y_dc_scale_table= -- cgit v1.2.3