mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
decklinksrc: add layout=interleaved to audio caps
This commit is contained in:
parent
c175c6b3d0
commit
c16224a220
1 changed files with 4 additions and 2 deletions
|
@ -86,7 +86,8 @@ static GstStaticPadTemplate gst_decklink_src_audio_src_template =
|
|||
GST_STATIC_PAD_TEMPLATE ("audiosrc",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("audio/x-raw, format=S16LE, channels=2, rate=48000")
|
||||
GST_STATIC_CAPS ("audio/x-raw, format=S16LE, channels=2, rate=48000, "
|
||||
"layout=interleaved")
|
||||
);
|
||||
|
||||
/* the video source pad template is created on the fly */
|
||||
|
@ -651,7 +652,8 @@ gst_decklink_src_send_initial_events (GstDecklinkSrc * src)
|
|||
gst_pad_push_event (src->audiosrcpad,
|
||||
gst_event_new_caps (gst_caps_new_simple ("audio/x-raw",
|
||||
"format", G_TYPE_STRING, "S16LE", "channels", G_TYPE_INT, 2,
|
||||
"rate", G_TYPE_INT, 48000, NULL)));
|
||||
"rate", G_TYPE_INT, 48000, "layout", G_TYPE_STRING, "interleaved",
|
||||
NULL)));
|
||||
|
||||
gst_pad_push_event (src->videosrcpad,
|
||||
gst_event_new_caps (gst_decklink_mode_get_caps (src->mode)));
|
||||
|
|
Loading…
Reference in a new issue