videodecoder: Change GST_WARNING to a GST_DEBUG

It's completely normal for some decoders to queue 50-60 frames without
it causing any problems, e.g. RPi.
This commit is contained in:
Sebastian Dröge 2013-06-04 17:49:55 +02:00
parent c06377b385
commit bd62595a75

View File

@ -2732,7 +2732,7 @@ gst_video_decoder_decode_frame (GstVideoDecoder * decoder,
priv->frames = g_list_append (priv->frames, frame);
if (g_list_length (priv->frames) > 10) {
GST_WARNING_OBJECT (decoder, "decoder frame list getting long: %d frames,"
GST_DEBUG_OBJECT (decoder, "decoder frame list getting long: %d frames,"
"possible internal leaking?", g_list_length (priv->frames));
}