[vlc-commits] input: Reindent after previous change
Thomas Guillem
git at videolan.org
Tue Oct 29 11:56:04 CET 2019
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Thu Feb 7 16:01:28 2019 +0100| [dfaad5464a99ddcb5aa843b776d016f0073ef838] | committer: Hugo Beauzée-Luyssen
input: Reindent after previous change
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=dfaad5464a99ddcb5aa843b776d016f0073ef838
---
src/input/input.c | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/src/input/input.c b/src/input/input.c
index b1b87df81e..b8df8b6990 100644
--- a/src/input/input.c
+++ b/src/input/input.c
@@ -1308,22 +1308,22 @@ static int Init( input_thread_t * p_input )
if (!input_item_IsPreparsed(input_priv(p_input)->p_item))
{
- vlc_meta_t *p_meta = vlc_meta_New();
- if( p_meta != NULL )
- {
- /* Get meta data from users */
- InputMetaUser( p_input, p_meta );
+ vlc_meta_t *p_meta = vlc_meta_New();
+ if( p_meta != NULL )
+ {
+ /* Get meta data from users */
+ InputMetaUser( p_input, p_meta );
- /* Get meta data from master input */
- InputSourceMeta( p_input, master, p_meta );
+ /* Get meta data from master input */
+ InputSourceMeta( p_input, master, p_meta );
- /* And from slave */
- for( int i = 0; i < priv->i_slave; i++ )
- InputSourceMeta( p_input, priv->slave[i], p_meta );
+ /* And from slave */
+ for( int i = 0; i < priv->i_slave; i++ )
+ InputSourceMeta( p_input, priv->slave[i], p_meta );
- es_out_ControlSetMeta( priv->p_es_out, p_meta );
- vlc_meta_Delete( p_meta );
- }
+ es_out_ControlSetMeta( priv->p_es_out, p_meta );
+ vlc_meta_Delete( p_meta );
+ }
}
msg_Dbg( p_input, "`%s' successfully opened",
More information about the vlc-commits
mailing list