Commit 0e9d45e7 authored by Diego Biurrun's avatar Diego Biurrun Committed by Jean-Baptiste Kempf

H.264 packetizer: Drop unused variable

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 79db2468
...@@ -556,7 +556,6 @@ static block_t *CreateAnnexbNAL( decoder_t *p_dec, const uint8_t *p, int i_size ...@@ -556,7 +556,6 @@ static block_t *CreateAnnexbNAL( decoder_t *p_dec, const uint8_t *p, int i_size
static void CreateDecodedNAL( uint8_t **pp_ret, int *pi_ret, static void CreateDecodedNAL( uint8_t **pp_ret, int *pi_ret,
const uint8_t *src, int i_src ) const uint8_t *src, int i_src )
{ {
const uint8_t *end = &src[i_src];
uint8_t *dst = malloc( i_src ); uint8_t *dst = malloc( i_src );
*pp_ret = dst; *pp_ret = dst;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment