tests: make audio-trickplay test compile when the gst debugging system is disabled

Fixes unused variable warning in that case.
This commit is contained in:
Tim-Philipp Müller 2010-06-24 15:31:31 +01:00
parent 713042e7ce
commit c13635b10e

View file

@ -34,9 +34,8 @@ check_position (GstElement * elem, GstQuery * pos, const gchar * info)
static gboolean
print_buffer_ts (GstPad * pad, GstBuffer * buffer, gpointer user_data)
{
GstClockTime ts = GST_BUFFER_TIMESTAMP (buffer);
GST_DEBUG (" ts: %" GST_TIME_FORMAT, GST_TIME_ARGS (ts));
GST_DEBUG_OBJECT (pad, " ts: %" GST_TIME_FORMAT,
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buffer)));
return TRUE;
}