Skip to content
Permalink
Browse files Browse the repository at this point in the history
fixed #1892
  • Loading branch information
jeanlf committed Aug 30, 2021
1 parent b03c9f2 commit 5ce0c90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/filters/reframe_nalu.c
Expand Up @@ -1680,8 +1680,10 @@ static void naludmx_queue_param_set(GF_NALUDmxCtx *ctx, char *data, u32 size, u3
{
GF_List *list = NULL, *alt_list = NULL;
GF_NALUFFParam *sl;
u32 i, count;
u32 crc = gf_crc_32(data, size);
u32 i, count, crc;

if (!size) return;
crc = gf_crc_32(data, size);

if (ctx->codecid==GF_CODECID_HEVC) {
switch (ps_type) {
Expand Down

0 comments on commit 5ce0c90

Please sign in to comment.