[FFmpeg-cvslog] v4l2: remove one forgotten use of AVFormatParameters.pix_fmt.

Anton Khirnov git at videolan.org
Fri Jun 3 05:24:56 CEST 2011


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Sun May 29 15:22:45 2011 +0200| [fefa67d536346b39973ab70b892d8ef27215b0b3] | committer: Anton Khirnov

v4l2: remove one forgotten use of AVFormatParameters.pix_fmt.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fefa67d536346b39973ab70b892d8ef27215b0b3
---

 libavdevice/v4l2.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c
index d9dce33..0cd4f38 100644
--- a/libavdevice/v4l2.c
+++ b/libavdevice/v4l2.c
@@ -642,7 +642,7 @@ static int v4l2_read_header(AVFormatContext *s1, AVFormatParameters *ap)
     desired_format = device_try_init(s1, pix_fmt, &s->width, &s->height, &codec_id);
     if (desired_format == 0) {
         av_log(s1, AV_LOG_ERROR, "Cannot find a proper format for "
-               "codec_id %d, pix_fmt %d.\n", s1->video_codec_id, ap->pix_fmt);
+               "codec_id %d, pix_fmt %d.\n", s1->video_codec_id, pix_fmt);
         close(s->fd);
 
         res = AVERROR(EIO);



More information about the ffmpeg-cvslog mailing list