typefindfunctions: fix indentation

This commit is contained in:
Tim-Philipp Müller 2011-09-25 15:24:56 +01:00
parent 635d2411cc
commit bfb33e09a9

View file

@ -4103,7 +4103,7 @@ degas_type_find (GstTypeFind * tf, gpointer private)
if (resolution <= 2) { if (resolution <= 2) {
data = gst_type_find_peek (tf, len - 16, 8); data = gst_type_find_peek (tf, len - 16, 8);
if (G_UNLIKELY (data == NULL)) if (G_UNLIKELY (data == NULL))
return; return;
for (n = 0; n < 4; n++) { for (n = 0; n < 4; n++) {
if (GST_READ_UINT16_BE (data + n * 2) > 2) if (GST_READ_UINT16_BE (data + n * 2) > 2)
return; return;
@ -4117,7 +4117,7 @@ degas_type_find (GstTypeFind * tf, gpointer private)
if ((resolution & 0x8000) && (resolution & 0x7fff) <= 2) { if ((resolution & 0x8000) && (resolution & 0x7fff) <= 2) {
data = gst_type_find_peek (tf, len - 16, 8); data = gst_type_find_peek (tf, len - 16, 8);
if (G_UNLIKELY (data == NULL)) if (G_UNLIKELY (data == NULL))
return; return;
for (n = 0; n < 4; n++) { for (n = 0; n < 4; n++) {
if (GST_READ_UINT16_BE (data + n * 2) > 2) if (GST_READ_UINT16_BE (data + n * 2) > 2)
return; return;