OSDN Git Service

Set codec_tag in dshow device, needed to distinguish between YUV and YVU.
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Sat, 8 Mar 2014 12:42:47 +0000 (13:42 +0100)
committerCarl Eugen Hoyos <cehoyos@ag.or.at>
Sat, 8 Mar 2014 12:42:47 +0000 (13:42 +0100)
Fixes ticket #3447.

libavdevice/dshow.c

index 950e313..1d500bd 100644 (file)
@@ -773,6 +773,7 @@ dshow_add_device(AVFormatContext *avctx,
         codec->codec_type = AVMEDIA_TYPE_VIDEO;
         codec->width      = bih->biWidth;
         codec->height     = bih->biHeight;
+        codec->codec_tag  = bih->biCompression;
         codec->pix_fmt    = dshow_pixfmt(bih->biCompression, bih->biBitCount);
         if (bih->biCompression == MKTAG('H', 'D', 'Y', 'C')) {
             av_log(avctx, AV_LOG_DEBUG, "attempt to use full range for HDYC...\n");