mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 19:55:32 +00:00
audioresample: remove transform lock
In this particular case it was not sufficient anyways because the setcaps function didn't take the transform lock.
This commit is contained in:
parent
6cd3faaa65
commit
642ca2bd40
1 changed files with 1 additions and 2 deletions
|
@ -1269,14 +1269,13 @@ gst_audio_resample_set_property (GObject * object, guint prop_id,
|
|||
|
||||
switch (prop_id) {
|
||||
case PROP_QUALITY:
|
||||
GST_BASE_TRANSFORM_LOCK (resample);
|
||||
/* FIXME locking! */
|
||||
quality = g_value_get_int (value);
|
||||
GST_DEBUG_OBJECT (resample, "new quality %d", quality);
|
||||
|
||||
gst_audio_resample_update_state (resample, resample->width,
|
||||
resample->channels, resample->inrate, resample->outrate,
|
||||
quality, resample->fp);
|
||||
GST_BASE_TRANSFORM_UNLOCK (resample);
|
||||
break;
|
||||
default:
|
||||
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
||||
|
|
Loading…
Reference in a new issue