Re: [FFmpeg-devel] [PATCH] dirac_parser: use uint32_t instead of int for parse offsets

2016-01-20 Thread Rostislav Pehlivanov
Disregard this patch, turns out the parser needlessly warns. The whole function simply checks if the parse offsets are sane but warns in case they aren't even though it will continue scanning for other possible parse codes. On 20 January 2016 at 11:37, Rostislav Pehlivanov wrote: > The specifica

[FFmpeg-devel] [PATCH] dirac_parser: use uint32_t instead of int for parse offsets

2016-01-20 Thread Rostislav Pehlivanov
The specifications use uint32_t and this fixes a number of warnings about invalid offsets of some files. Signed-off-by: Rostislav Pehlivanov --- libavcodec/dirac_parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/dirac_parser.c b/libavcodec/dirac_parser.c