mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
audiopayload: disable broken bufferlist handling
The bufferlist handling is broken so make sure it is never enabled.
This commit is contained in:
parent
0b0dde7ce1
commit
baa2fac2f8
1 changed files with 3 additions and 0 deletions
|
@ -234,7 +234,10 @@ gst_rtp_base_audio_payload_set_property (GObject * object,
|
||||||
|
|
||||||
switch (prop_id) {
|
switch (prop_id) {
|
||||||
case PROP_BUFFER_LIST:
|
case PROP_BUFFER_LIST:
|
||||||
|
#if 0
|
||||||
payload->priv->buffer_list = g_value_get_boolean (value);
|
payload->priv->buffer_list = g_value_get_boolean (value);
|
||||||
|
#endif
|
||||||
|
payload->priv->buffer_list = FALSE;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||||
|
|
Loading…
Reference in a new issue