GstLevel 要素を使用して RMS 値とピーク値を取得および出力するアプリケーションがあります。
level_message_cb(...) 関数でレベル値を読み取ると、プログラムは警告を出力します。すべての GstStructure フィールドが GValueArray タイプになったようです。
static gboolean
level_message_cb (GstBus * bus, GstMessage * message, gpointer data) {
if (message->type == GST_MESSAGE_ELEMENT) {
const GstStructure *s = gst_message_get_structure (message);
const gchar *name = gst_structure_get_name (s);
if (strcmp (name, "level") == 0) {
gint channels;
GstClockTime endtime;
gdouble rms_dB, peak_dB, decay_dB;
gdouble rms;
const GValue *array_val;
const GValue *value;
GValueArray *rms_arr, *peak_arr, *decay_arr;
gint i;
if (!gst_structure_get_clock_time (s, "endtime", &endtime))
g_warning ("Could not parse endtime");
array_val = gst_structure_get_value (s, "rms");
rms_arr = (GValueArray *) g_value_get_boxed (array_val);
array_val = gst_structure_get_value (s, "peak");
peak_arr = (GValueArray *) g_value_get_boxed (array_val);
array_val = gst_structure_get_value (s, "decay");
decay_arr = (GValueArray *) g_value_get_boxed (array_val);
channels = rms_arr->n_values;
g_print ("endtime: %" GST_TIME_FORMAT ", channels: %d\n",
GST_TIME_ARGS (endtime), channels);
for (i = 0; i < channels; ++i) {
g_print ("channel %d\n", i);
array_val = gst_structure_get_value (s, "rms");
arr = (GValueArray *) g_value_get_boxed (array_val);
value = g_value_array_get_nth (rms_arr, i);
rms_dB = g_value_get_double (value);
value = g_value_array_get_nth (peak_arr, i);
peak_dB = g_value_get_double (value);
value = g_value_array_get_nth (decay_arr, i);
decay_dB = g_value_get_double (value);
g_print ("RMS: %f dB, peak: %f dB, decay: %f dB\n",
rms_dB, peak_dB, decay_dB);
rms = pow (10, rms_dB / 20);
g_print ("normalized rms value: %f\n", rms);
}
}
}
return TRUE;
}
これは私が得る警告です:
warning: 'g_value_array_get_nth' is deprecated. Use 'g_array_index' instead
GValueArray タイプで "g_array_index()" を使用するにはどうすればよいですか。GArray には g_array_index() メソッドがありますが、GValueArray にはありません。
GValueArray も非推奨であるか、回避する必要があることをどこかで読みました。level_message_cb() 関数でレベル値を正しく読み取る方法を教えてください。
さすがトリニトン。