diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-03 11:42:07 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-03 13:55:55 +0200 |
commit | 94bed8e582eed1268ddc0d2b88cad21d8c638774 (patch) | |
tree | f2f10756ea236656e7305c5b06b832261efbb6c1 /libavcodec/targaenc.c | |
parent | 93d06bd1df73861c73bc12c659aecdf404d1de2a (diff) | |
download | ffmpeg-94bed8e582eed1268ddc0d2b88cad21d8c638774.tar.gz |
Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name().
This fixes warnings about avcodec_get_pix_fmt_name() being deprecated.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/targaenc.c')
-rw-r--r-- | libavcodec/targaenc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/targaenc.c b/libavcodec/targaenc.c index 828ab11c94..276bcc83eb 100644 --- a/libavcodec/targaenc.c +++ b/libavcodec/targaenc.c @@ -20,6 +20,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavutil/pixdesc.h" #include "avcodec.h" #include "rle.h" #include "targa.h" @@ -119,7 +120,7 @@ static int targa_encode_frame(AVCodecContext *avctx, break; default: av_log(avctx, AV_LOG_ERROR, "Pixel format '%s' not supported.\n", - avcodec_get_pix_fmt_name(avctx->pix_fmt)); + av_get_pix_fmt_name(avctx->pix_fmt)); return AVERROR(EINVAL); } bpp = outbuf[16] >> 3; |