From 1d2a51bdc8315fa7283be329669860e435a1513f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 27 Jan 2021 01:44:20 +0100 Subject: Use enum class for VideoRange. --- src/lib/ffmpeg_image_proxy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/ffmpeg_image_proxy.cc') diff --git a/src/lib/ffmpeg_image_proxy.cc b/src/lib/ffmpeg_image_proxy.cc index 5b2280cfd..d082a8ef7 100644 --- a/src/lib/ffmpeg_image_proxy.cc +++ b/src/lib/ffmpeg_image_proxy.cc @@ -195,7 +195,7 @@ FFmpegImageProxy::image (optional) const AVPixelFormat const pix_fmt = static_cast(frame->format); _image.reset (new Image(frame)); - if (_video_range == VIDEO_RANGE_VIDEO && av_pix_fmt_desc_get(pix_fmt)->flags & AV_PIX_FMT_FLAG_RGB) { + if (_video_range == VideoRange::VIDEO && av_pix_fmt_desc_get(pix_fmt)->flags & AV_PIX_FMT_FLAG_RGB) { /* Asking for the video range to be converted by libswscale (in Image) will not work for * RGB sources since that method only processes video range in YUV and greyscale. So we have * to do it ourselves here. -- cgit v1.2.3