On Sat, Jun 06, 2020 at 11:42:17 +0530, [email protected] wrote:
> +static uint8_t info_marker(uint16_t marker)
Usually ffmpeg uses type int as a replacement for bool (but I'm not
sure on this).
> + else
> + if (marker > 0xFF00) return 1;
> + return 0;
Should be
else if (marker > 0xFF00)
return 1;
> + if(s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
if (
> + next= buf_size;
next = buf_size;
> + } else {
> + next= find_frame_end(m, buf, buf_size);
ditto
Moritz
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".