diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 20:19:46 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 20:19:46 +0000 |
commit | 6dd36490c7ecccef84ce137b2f9766a1afb05258 (patch) | |
tree | 0a8d96eafac5fa30800b57810b90f28ed354f174 | |
parent | fba95d3c233260a6e2cc6db1f82fd2118545f79b (diff) | |
download | ffmpeg-6dd36490c7ecccef84ce137b2f9766a1afb05258.tar.gz |
This should not be part of the public API
Originally committed as revision 11960 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/imgconvert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index a6a5d6f0fc..468035f364 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -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) { |