X-Git-Url: https://git.nihav.org/?a=blobdiff_plain;f=nihav-vivo%2Fsrc%2Fcodecs%2Fg723_1.rs;h=5824501afac16f652ecae99a2dffe8b9787230d5;hb=2ff5620166d8ce8b838b251d1fdd8de73f3f857c;hp=840bb942ebd560b2256feed8694fe5febfde8318;hpb=31cf33aceca7798294e1ce5c01702ef5e6ef7adc;p=nihav.git diff --git a/nihav-vivo/src/codecs/g723_1.rs b/nihav-vivo/src/codecs/g723_1.rs index 840bb94..5824501 100644 --- a/nihav-vivo/src/codecs/g723_1.rs +++ b/nihav-vivo/src/codecs/g723_1.rs @@ -960,6 +960,12 @@ impl NADecoder for G7231Decoder { } } +impl NAOptionHandler for G7231Decoder { + fn get_supported_options(&self) -> &[NAOptionDefinition] { &[] } + fn set_options(&mut self, _options: &[NAOption]) { } + fn query_option_value(&self, _name: &str) -> Option { None } +} + pub fn get_decoder() -> Box { Box::new(G7231Decoder::new()) }