diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2016-02-27 15:32:19 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2016-02-27 16:39:50 +0000 |
commit | 94ec3f8a3e2919676576059983fa74e4c4047311 (patch) | |
tree | b6bc2e8506d117a3adf6444e0b77918d37ab943b /plugins | |
parent | 458c8608ebf9e24581d2b3d4bb4b67228d518942 (diff) |
typefind: fix indentation
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/elements/gsttypefindelement.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/elements/gsttypefindelement.c b/plugins/elements/gsttypefindelement.c index 8880c1649..36ee2f497 100644 --- a/plugins/elements/gsttypefindelement.c +++ b/plugins/elements/gsttypefindelement.c @@ -929,7 +929,8 @@ not_enough_data: if (at_eos) { GST_ELEMENT_ERROR (typefind, STREAM, TYPE_NOT_FOUND, - (_("Stream doesn't contain enough data.")), ("Can't typefind stream")); + (_("Stream doesn't contain enough data.")), + ("Can't typefind stream")); return GST_FLOW_ERROR; } else { GST_DEBUG_OBJECT (typefind, "not enough data for typefinding yet " @@ -950,7 +951,8 @@ wait_for_data: if (at_eos) { GST_ELEMENT_ERROR (typefind, STREAM, TYPE_NOT_FOUND, - (_("Stream doesn't contain enough data.")), ("Can't typefind stream")); + (_("Stream doesn't contain enough data.")), + ("Can't typefind stream")); return GST_FLOW_ERROR; } else { GST_DEBUG_OBJECT (typefind, |