avcfg: use g_object_get_property, not g_object_getv

I simply confused those two, we didn't need g_object_getv
here anyway.
This commit is contained in:
Mathieu Duponchelle 2018-07-13 17:21:25 +02:00
parent c34dd9bb1a
commit 70d9f923dc

View file

@ -573,6 +573,7 @@ gst_ffmpeg_cfg_fill_context (GObject * object, AVCodecContext * context)
continue;
g_object_getv (object, 1, &pspec->name, &value);
g_object_get_property (object, pspec->name, &value);
set_option_value (context, pspec, &value, opt);
}
g_free (pspecs);