[vlc-commits] hxxx_nal: reindent after previous commit
Thomas Guillem
git at videolan.org
Thu Jun 4 14:23:12 CEST 2020
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed May 27 13:04:34 2020 +0200| [fa5e127ed4130485b781c9809aa9851c6d390316] | committer: Hugo Beauzée-Luyssen
hxxx_nal: reindent after previous commit
Signed-off-by: Hugo Beauzée-Luyssen <hugo at beauzee.fr>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fa5e127ed4130485b781c9809aa9851c6d390316
---
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 6bdfd5a2a5..7ccad55884 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
{
More information about the vlc-commits
mailing list