mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-17 21:06:17 +00:00
omxaudiodec: use default pad accept-caps handling
Instead of the audiodecoder one. The OMX audioo decoders have their valid input in the template pad, so just check against that to avoid doing a query downstream.
This commit is contained in:
parent
c038df6671
commit
1f3bf04fe7
1 changed files with 3 additions and 0 deletions
|
@ -102,6 +102,9 @@ gst_omx_audio_dec_init (GstOMXAudioDec * self)
|
|||
{
|
||||
gst_audio_decoder_set_needs_format (GST_AUDIO_DECODER (self), TRUE);
|
||||
gst_audio_decoder_set_drainable (GST_AUDIO_DECODER (self), TRUE);
|
||||
gst_audio_decoder_set_use_default_pad_acceptcaps (GST_AUDIO_DECODER_CAST
|
||||
(self), TRUE);
|
||||
GST_PAD_SET_ACCEPT_TEMPLATE (GST_AUDIO_DECODER_SINK_PAD (self));
|
||||
|
||||
g_mutex_init (&self->drain_lock);
|
||||
g_cond_init (&self->drain_cond);
|
||||
|
|
Loading…
Reference in a new issue