Mercurial > libavcodec.hg
changeset 6358:6aa3024c07c5 libavcodec
This should not be part of the public API
author | vitor |
---|---|
date | Fri, 15 Feb 2008 20:19:46 +0000 |
parents | 3f86370d3f63 |
children | d5a97935b2f1 |
files | imgconvert.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/imgconvert.c Fri Feb 15 19:47:14 2008 +0000 +++ b/imgconvert.c Fri Feb 15 20:19:46 2008 +0000 @@ -841,7 +841,7 @@ } } -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 @@ 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) {