mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-10 03:32:22 +08:00
Move ALIGN macro to libavutil/common.h and use it in various places
Originally committed as revision 18898 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -951,7 +951,7 @@ static const AVClass av_codec_context_class = { "Postproc", context_to_name, NUL
|
||||
|
||||
pp_context *pp_get_context(int width, int height, int cpuCaps){
|
||||
PPContext *c= av_malloc(sizeof(PPContext));
|
||||
int stride= (width+15)&(~15); //assumed / will realloc if needed
|
||||
int stride= FFALIGN(width, 16); //assumed / will realloc if needed
|
||||
int qpStride= (width+15)/16 + 2; //assumed / will realloc if needed
|
||||
|
||||
memset(c, 0, sizeof(PPContext));
|
||||
|
Reference in New Issue
Block a user