lavc: replace avcodec_set_dimensions with ff_set_dimensions

avcodec_set_dimensions() is supposed to be an internal utility function,
there is no reason whatsoever for it to be public. Therefore deprecate
it.
This commit is contained in:
Anton Khirnov
2013-10-27 09:24:22 +01:00
parent 28096e0a80
commit 7644f5a807
4 changed files with 30 additions and 4 deletions

View File

@@ -152,12 +152,23 @@ unsigned avcodec_get_edge_width(void)
return EDGE_WIDTH;
}
#if FF_API_SET_DIMENSIONS
void avcodec_set_dimensions(AVCodecContext *s, int width, int height)
{
s->coded_width = width;
s->coded_height = height;
s->width = width;
s->height = height;
ff_set_dimensions(s, width, height);
}
#endif
int ff_set_dimensions(AVCodecContext *s, int width, int height)
{
int ret = av_image_check_size(width, height, 0, s);
if (ret < 0)
width = height = 0;
s->width = s->coded_width = width;
s->height = s->coded_height = height;
return ret;
}
#if HAVE_NEON || ARCH_PPC || HAVE_MMX