summaryrefslogtreecommitdiff
path: root/libavcodec/nuv.c
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-04 11:53:11 +0000
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-03-04 11:53:11 +0000
commit636d6a4a472d756cfb0ee845249e1e4f303e2134 (patch)
tree9ee1413732cf401c2aebad226563876cac482069 /libavcodec/nuv.c
parenta3fd2bd87d1060d9f391969950c58cd56aad7847 (diff)
Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"
to "picture" as suggested by Baptiste Coudurier. Originally committed as revision 8220 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/nuv.c')
-rw-r--r--libavcodec/nuv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nuv.c b/libavcodec/nuv.c
index 19e3430566..5989c6cc20 100644
--- a/libavcodec/nuv.c
+++ b/libavcodec/nuv.c
@@ -50,7 +50,7 @@ static void copy_frame(AVFrame *f, uint8_t *src,
int width, int height) {
AVPicture pic;
avpicture_fill(&pic, src, PIX_FMT_YUV420P, width, height);
- img_copy((AVPicture *)f, &pic, PIX_FMT_YUV420P, width, height);
+ av_picture_copy((AVPicture *)f, &pic, PIX_FMT_YUV420P, width, height);
}
/**