Stop hardcoding align=32 in av_frame_get_buffer() calls.

Use 0, which selects the alignment automatically.
This commit is contained in:
Anton Khirnov
2017-02-08 09:51:17 +01:00
parent 8cfab9fa8c
commit f30a41a608
21 changed files with 23 additions and 23 deletions

View File

@@ -422,7 +422,7 @@ static int transfer_data_alloc(AVFrame *dst, const AVFrame *src, int flags)
frame_tmp->width = ctx->width;
frame_tmp->height = ctx->height;
ret = av_frame_get_buffer(frame_tmp, 32);
ret = av_frame_get_buffer(frame_tmp, 0);
if (ret < 0)
goto fail;