From: Luca Barbato Date: Tue, 27 Dec 2011 06:41:01 +0000 (+0100) Subject: v4l2: set the proper codec_tag X-Git-Tag: android-x86-4.4-r1~8529^2~3897 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=cd2bbad3032780f8d4536aed15b3f5f45b95859c;p=android-x86%2Fexternal-ffmpeg.git v4l2: set the proper codec_tag Unbreak direct streamcopy. --- diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index 1e4274c84b..cde2f9f317 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -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;