mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
voaacenc: also indicate mono audio in sink caps
This commit is contained in:
parent
f0668dfdd8
commit
5b785f51ca
1 changed files with 7 additions and 6 deletions
|
@ -271,13 +271,14 @@ gst_voaacenc_generate_sink_caps (gpointer data)
|
|||
t = gst_structure_copy (s);
|
||||
|
||||
gst_structure_set (t, "channels", G_TYPE_INT, i, NULL);
|
||||
if (i == 1)
|
||||
continue;
|
||||
if (i > 1) {
|
||||
for (c = 0; c < i; c++)
|
||||
channel_mask |=
|
||||
G_GUINT64_CONSTANT (1) << aac_channel_positions[i - 1][c];
|
||||
|
||||
for (c = 0; c < i; c++)
|
||||
channel_mask |= G_GUINT64_CONSTANT (1) << aac_channel_positions[i - 1][c];
|
||||
|
||||
gst_structure_set (t, "channel-mask", GST_TYPE_BITMASK, channel_mask, NULL);
|
||||
gst_structure_set (t, "channel-mask", GST_TYPE_BITMASK, channel_mask,
|
||||
NULL);
|
||||
}
|
||||
gst_caps_append_structure (caps, t);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue