Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2021-05-01 10:49:36 +0300
committerSebastian Dröge <sebastian@centricular.com>2021-05-01 10:49:36 +0300
commit8bda233d02e24711d94cba73ad704f8e3606fe2a (patch)
treea889a4d5f4f7cd37a1a29bcdfa112078806b218c /video
parent78d9fb521dc98b968648ba416c22b057bd0a44ac (diff)
rav1e: Fix compilation after VideoColorRange::Range0255 got renamed to VideoColorRange::Range0_255
Diffstat (limited to 'video')
-rw-r--r--video/rav1e/src/rav1enc/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/rav1e/src/rav1enc/imp.rs b/video/rav1e/src/rav1enc/imp.rs
index 37cb10e05..04a70ec2b 100644
--- a/video/rav1e/src/rav1enc/imp.rs
+++ b/video/rav1e/src/rav1enc/imp.rs
@@ -524,7 +524,7 @@ impl VideoEncoderImpl for Rav1Enc {
_ => color::ChromaSamplePosition::Unknown,
},
pixel_range: match video_info.colorimetry().range() {
- gst_video::VideoColorRange::Range0255 => color::PixelRange::Full,
+ gst_video::VideoColorRange::Range0_255 => color::PixelRange::Full,
_ => color::PixelRange::Limited,
},
color_description: {