audio/video: Fix some clippy warnings
warning: use of unwrap_or
followed by a function call
--> gstreamer-audio/src/subclass/audio_encoder.rs:360:18
|
360 | .unwrap_or(element.proxy_getcaps(None, filter))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| help: try this: unwrap_or_else(|| element.proxy_getcaps(None, filter))