提交 6dd36490 编写于 作者: V Vitor Sessak

This should not be part of the public API

Originally committed as revision 11960 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 fba95d3c
......@@ -841,7 +841,7 @@ void ff_img_copy_plane(uint8_t *dst, int dst_wrap,
}
}
int av_get_plane_bytewidth(enum PixelFormat pix_fmt, int width, int plane)
int ff_get_plane_bytewidth(enum PixelFormat pix_fmt, int width, int plane)
{
int bits;
const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
......@@ -894,7 +894,7 @@ void av_picture_copy(AVPicture *dst, const AVPicture *src,
case FF_PIXEL_PLANAR:
for(i = 0; i < pf->nb_channels; i++) {
int w, h;
int bwidth = av_get_plane_bytewidth(pix_fmt, width, i);
int bwidth = ff_get_plane_bytewidth(pix_fmt, width, i);
w = width;
h = height;
if (i == 1 || i == 2) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册