aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-06-16 11:52:24 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-06-19 01:36:39 +0200
commitc90e8054af849759d3c06b31dba3fa592fcdc3e6 (patch)
tree51108f862cadbdcd26ac4d15a579a4021d1ce3d9
parent18b4404dc35eef67620066e11086048b933c2e4c (diff)
downloadffmpeg-c90e8054af849759d3c06b31dba3fa592fcdc3e6.tar.gz
lavc/avcodec.h: fix reference to nonexistent function in av_picture_copy() doxy
Mention av_image_copy() instead.
-rw-r--r--libavcodec/avcodec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index e2b754f04c..43931da831 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -4310,7 +4310,7 @@ int avpicture_get_size(enum PixelFormat pix_fmt, int width, int height);
int avpicture_deinterlace(AVPicture *dst, const AVPicture *src,
enum PixelFormat pix_fmt, int width, int height);
/**
- * Copy image src to dst. Wraps av_picture_data_copy() above.
+ * Copy image src to dst. Wraps av_image_copy().
*/
void av_picture_copy(AVPicture *dst, const AVPicture *src,
enum PixelFormat pix_fmt, int width, int height);