diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-04-29 16:37:23 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-02 11:24:45 +0200 |
commit | 6209669de4a0aa056ae05b0a2c78eaf2ca489b23 (patch) | |
tree | 2d7ec8173109a77def405276b8490eaf6a5c9af9 /libavcodec/svq3.c | |
parent | b178cd76b27ad317e6a93db63f5630f268ce21fe (diff) | |
download | ffmpeg-6209669de4a0aa056ae05b0a2c78eaf2ca489b23.tar.gz |
Replace deprecated av_get_pict_type_char() with av_get_picture_type_char().
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r-- | libavcodec/svq3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index 827a408d31..9712f45945 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -941,7 +941,7 @@ static int svq3_decode_frame(AVCodecContext *avctx, if (avctx->debug&FF_DEBUG_PICT_INFO){ av_log(h->s.avctx, AV_LOG_DEBUG, "%c hpel:%d, tpel:%d aqp:%d qp:%d, slice_num:%02X\n", - av_get_pict_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag, + av_get_picture_type_char(s->pict_type), h->halfpel_flag, h->thirdpel_flag, s->adaptive_quant, s->qscale, h->slice_num); } |