mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-01-12 00:06:51 +08:00
avutil: Rename FF_CEIL_COMPAT to AV_CEIL_COMPAT
Libav, for some reason, merged this as a public API function. This will aid in future merges. A define is left for backwards compat, just in case some person used it, since it is in a public header. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
@@ -123,7 +123,7 @@ static int process_frame(FFFrameSync *fs)
|
||||
return ret;
|
||||
}
|
||||
|
||||
height[1] = height[2] = FF_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h);
|
||||
height[1] = height[2] = AV_CEIL_RSHIFT(inlink->h, s->desc->log2_chroma_h);
|
||||
height[0] = height[3] = inlink->h;
|
||||
|
||||
for (p = 0; p < s->nb_planes; p++) {
|
||||
|
||||
Reference in New Issue
Block a user