On Sat, Nov 2, 2019 at 9:20 AM Marton Balint <[email protected]> wrote:
>
> Signed-off-by: Marton Balint <[email protected]>
> ---
> libavcodec/libvpxenc.c | 60
> ++++++++++++++++++++++++++++++--------------------
> 1 file changed, 36 insertions(+), 24 deletions(-)
>
lgtm. I'll apply this set of patches soon if there aren't any further comments.
> [...]
> +static int realloc_alpha_uv(AVCodecContext *avctx, int width, int height)
> +{
> + VPxContext *ctx = avctx->priv_data;
> + struct vpx_image *rawimg_alpha = &ctx->rawimg_alpha;
> + unsigned char **planes = rawimg_alpha->planes;
> + int *stride = rawimg_alpha->stride;
> +
> + if (!planes[VPX_PLANE_U] ||
> + !planes[VPX_PLANE_V] ||
> + width != (int)rawimg_alpha->d_w ||
> + height != (int)rawimg_alpha->d_h)
> + {
This should be joined with the previous line, I've updated it locally.
_______________________________________________
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".