From 718c7b18c91c3eca21d7028bc6581045b22b32a4 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 30 Jan 2010 19:10:26 +0000 Subject: Use av_get_pix_fmt() instead of the deprecated avcodec_get_pix_fmt() function. Originally committed as revision 21550 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffplay.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ffplay.c') diff --git a/ffplay.c b/ffplay.c index ffbd42da21..f86aaf184b 100644 --- a/ffplay.c +++ b/ffplay.c @@ -23,6 +23,7 @@ #include #include #include "libavutil/avstring.h" +#include "libavutil/pixdesc.h" #include "libavformat/avformat.h" #include "libavdevice/avdevice.h" #include "libswscale/swscale.h" @@ -2406,7 +2407,7 @@ static void opt_format(const char *arg) static void opt_frame_pix_fmt(const char *arg) { - frame_pix_fmt = avcodec_get_pix_fmt(arg); + frame_pix_fmt = av_get_pix_fmt(arg); } static int opt_sync(const char *opt, const char *arg) -- cgit v1.2.3