mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
typefindfunctions: fix indentation
This commit is contained in:
parent
635d2411cc
commit
bfb33e09a9
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue