]> git.sesse.net Git - ffmpeg/commitdiff
v4l2: set the proper codec_tag
authorLuca Barbato <lu_zero@gentoo.org>
Tue, 27 Dec 2011 06:41:01 +0000 (07:41 +0100)
committerLuca Barbato <lu_zero@gentoo.org>
Wed, 4 Jan 2012 12:10:20 +0000 (13:10 +0100)
Unbreak direct streamcopy.

libavdevice/v4l2.c

index 1e4274c84b17891ac7c2f2fe23bf3bcceedab57a..cde2f9f317fbdda01926a252bfdc5feebf01ffad 100644 (file)
@@ -689,6 +689,9 @@ static int v4l2_read_header(AVFormatContext *s1, AVFormatParameters *ap)
 
     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
     st->codec->codec_id = codec_id;
+    if (codec_id == CODEC_ID_RAWVIDEO)
+        st->codec->codec_tag =
+            avcodec_pix_fmt_to_codec_tag(st->codec->pix_fmt);
     st->codec->width = s->width;
     st->codec->height = s->height;
     st->codec->bit_rate = s->frame_size * 1/av_q2d(st->codec->time_base) * 8;