diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-16 11:52:24 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-19 01:36:39 +0200 |
commit | c90e8054af849759d3c06b31dba3fa592fcdc3e6 (patch) | |
tree | 51108f862cadbdcd26ac4d15a579a4021d1ce3d9 | |
parent | 18b4404dc35eef67620066e11086048b933c2e4c (diff) | |
download | ffmpeg-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.h | 2 |
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); |