1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

lavd/dshow: fix style and typo recently introduced.

This commit is contained in:
Clément Bœsch
2013-03-19 21:25:49 +01:00
parent 17c1881d58
commit d4982b115d

View File

@@ -774,8 +774,8 @@ dshow_add_device(AVFormatContext *avctx,
codec->width = bih->biWidth; codec->width = bih->biWidth;
codec->height = bih->biHeight; codec->height = bih->biHeight;
codec->pix_fmt = dshow_pixfmt(bih->biCompression, bih->biBitCount); codec->pix_fmt = dshow_pixfmt(bih->biCompression, bih->biBitCount);
if(bih->biCompression == MKTAG('H', 'D', 'Y', 'C')) { if (bih->biCompression == MKTAG('H', 'D', 'Y', 'C')) {
av_log(avctx, AV_LOG_DEBUG, "attempt use full range for HDYC..."); av_log(avctx, AV_LOG_DEBUG, "attempt to use full range for HDYC...\n");
codec->color_range = AVCOL_RANGE_MPEG; // just in case it needs this... codec->color_range = AVCOL_RANGE_MPEG; // just in case it needs this...
} }
if (codec->pix_fmt == AV_PIX_FMT_NONE) { if (codec->pix_fmt == AV_PIX_FMT_NONE) {