mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-10-31 22:58:51 +00:00
rav1e: Fix compilation after VideoColorRange::Range0255 got renamed to VideoColorRange::Range0_255
This commit is contained in:
parent
78d9fb521d
commit
8bda233d02
1 changed files with 1 additions and 1 deletions
|
@ -524,7 +524,7 @@ impl VideoEncoderImpl for Rav1Enc {
|
||||||
_ => color::ChromaSamplePosition::Unknown,
|
_ => color::ChromaSamplePosition::Unknown,
|
||||||
},
|
},
|
||||||
pixel_range: match video_info.colorimetry().range() {
|
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::PixelRange::Limited,
|
||||||
},
|
},
|
||||||
color_description: {
|
color_description: {
|
||||||
|
|
Loading…
Reference in a new issue