Skip to content

Commit

Permalink
Merge pull request #46 from Zenexer/master
Browse files Browse the repository at this point in the history
Fix #45: Missing braces in for loop
  • Loading branch information
aizvorski authored Nov 7, 2023
2 parents 2f804f4 + d72e999 commit d8e53fd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion h264_sei.c
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,11 @@ void read_debug_sei_payload( h264_stream_t* h, bs_t* b )
}

for ( i = 0; i < s->payloadSize; i++ )
printf("%ld.%d: ", (long int)(b->p - b->start), b->bits_left); s->data[i] = bs_read_u8(b); printf("s->data[i]: %d \n", s->data[i]);
{
printf("%ld.%d: ", (long int)(b->p - b->start), b->bits_left);
s->data[i] = bs_read_u8(b);
printf("s->data[i]: %d \n", s->data[i]);
}
}

//if( 1 )
Expand Down

0 comments on commit d8e53fd

Please sign in to comment.