[FFmpeg-cvslog] lavd/dshow: fix style and typo recently introduced.
Clément Bœsch
git at videolan.org
Tue Mar 19 21:26:43 CET 2013
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Tue Mar 19 21:25:49 2013 +0100| [d4982b115dcd02f10504c2170b99af867a5c7261] | committer: Clément Bœsch
lavd/dshow: fix style and typo recently introduced.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d4982b115dcd02f10504c2170b99af867a5c7261
---
libavdevice/dshow.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavdevice/dshow.c b/libavdevice/dshow.c
index 4991414..8cc12f5 100644
--- a/libavdevice/dshow.c
+++ b/libavdevice/dshow.c
@@ -774,9 +774,9 @@ dshow_add_device(AVFormatContext *avctx,
codec->width = bih->biWidth;
codec->height = bih->biHeight;
codec->pix_fmt = dshow_pixfmt(bih->biCompression, bih->biBitCount);
- if(bih->biCompression == MKTAG('H', 'D', 'Y', 'C')) {
- av_log(avctx, AV_LOG_DEBUG, "attempt use full range for HDYC...");
- codec->color_range = AVCOL_RANGE_MPEG; // just in case it needs this...
+ if (bih->biCompression == MKTAG('H', 'D', 'Y', 'C')) {
+ 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...
}
if (codec->pix_fmt == AV_PIX_FMT_NONE) {
codec->codec_id = ff_codec_get_id(avformat_get_riff_video_tags(), bih->biCompression);
More information about the ffmpeg-cvslog
mailing list