On Sat, Jan 24, 2015 at 03:14:03PM +0100, Hendrik Leppkes wrote:
> --- a/libavcodec/hevc.c
> +++ b/libavcodec/hevc.c
> @@ -2657,8 +2657,8 @@ static int extract_rbsp(const uint8_t *src, int length,
> #endif /* HAVE_FAST_UNALIGNED */
>
> if (i >= length - 1) { // no escaped 0
> - nal->data = src;
> - nal->size = length;
> + nal->data = nal->raw_data = src;
> + nal->size = nal->raw_size = length;
nit: Please format like this:
nal->data =
nal->raw_data = src;
nal->size =
nal->raw_size = length;
Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel