projects
/
libav.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"
[libav.git]
/
libavcodec
/
nuv.c
diff --git
a/libavcodec/nuv.c
b/libavcodec/nuv.c
index
19e3430
..
5989c6c
100644
(file)
--- 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);
}
/**