From dc0c5ced7230e5660142302c7c1aef6cc14f3564 Mon Sep 17 00:00:00 2001 From: Thomas Guillem <thomas@gllm.fr> Date: Wed, 27 May 2020 13:04:34 +0200 Subject: [PATCH] hxxx_nal: reindent after previous commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Hugo Beauzée-Luyssen <hugo@beauzee.fr> (cherry picked from commit fa5e127ed4130485b781c9809aa9851c6d390316) Signed-off-by: Hugo Beauzée-Luyssen <hugo@beauzee.fr> --- modules/packetizer/hxxx_nal.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/packetizer/hxxx_nal.c b/modules/packetizer/hxxx_nal.c index 6bdfd5a2a58a..7ccad558843d 100644 --- a/modules/packetizer/hxxx_nal.c +++ b/modules/packetizer/hxxx_nal.c @@ -122,16 +122,16 @@ block_t *hxxx_AnnexB_to_xVC( block_t *p_block, uint8_t i_nal_length_size ) if( p_list[i_nalcount - 1].move != 0 || i_nal_length_size != 4 ) /* We'll need to grow or shrink */ { - block_t *p_newblock = block_Alloc( i_dest ); - if( unlikely(!p_newblock) ) - goto error; + block_t *p_newblock = block_Alloc( i_dest ); + if( unlikely(!p_newblock) ) + goto error; - p_release = p_block; /* Will be released after use */ - p_source = p_release->p_buffer; - p_sourceend = &p_release->p_buffer[p_release->i_buffer]; + p_release = p_block; /* Will be released after use */ + p_source = p_release->p_buffer; + p_sourceend = &p_release->p_buffer[p_release->i_buffer]; - p_block = p_newblock; - p_dest = p_newblock->p_buffer; + p_block = p_newblock; + p_dest = p_newblock->p_buffer; } else { -- GitLab