audio,video: Remove dox feature from function bodies

Now that the crates are generated and linked against v1_20 binaries
there is no need to guard this codepath when building `dox` (which
inherently enables `v1_20` but did previously not actually compile
against that version yet).
This commit is contained in:
Marijn Suijten 2021-04-17 12:11:52 +02:00
parent a828d3cc12
commit a85b30eacb
2 changed files with 3 additions and 3 deletions

View file

@ -174,7 +174,7 @@ impl AudioFormatInfo {
unsafe {
cfg_if::cfg_if! {
if #[cfg(all(feature = "v1_20", not(feature = "dox")))] {
if #[cfg(feature = "v1_20")] {
ffi::gst_audio_format_info_fill_silence(self.0, dest.as_mut_ptr() as *mut _, dest.len())
} else {
ffi::gst_audio_format_fill_silence(self.0, dest.as_mut_ptr() as *mut _, dest.len())

View file

@ -185,7 +185,7 @@ impl crate::VideoChromaSite {
unsafe {
cfg_if::cfg_if! {
if #[cfg(all(feature = "v1_20", not(feature = "dox")))] {
if #[cfg(feature = "v1_20")] {
from_glib_full(ffi::gst_video_chroma_site_to_string(self.into_glib()))
} else {
from_glib_none(ffi::gst_video_chroma_to_string(self.into_glib()))
@ -203,7 +203,7 @@ impl str::FromStr for crate::VideoChromaSite {
skip_assert_initialized!();
cfg_if::cfg_if! {
if #[cfg(all(feature = "v1_20", not(feature = "dox")))] {
if #[cfg(feature = "v1_20")] {
let chroma_site = Self::from_string(s);
} else {
assert_initialized_main_thread!();