diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-22 19:06:28 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-02-22 19:06:28 +0000 |
commit | 8fc3d25c0a237b4f8b77e18ee998728359d37294 (patch) | |
tree | 58587066b3d5cf98f2657218f8181c9212a07f0b | |
parent | 8ab4861cc23460ebf11285f34c048ddef7bc887e (diff) | |
download | ffmpeg-8fc3d25c0a237b4f8b77e18ee998728359d37294.tar.gz |
Doxygenize the comments for the avpicture_free() function.
Originally committed as revision 8080 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7fe1562ede..1008ac8b66 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2443,7 +2443,11 @@ attribute_deprecated void img_resample_close(ImgReSampleContext *s); */ int avpicture_alloc(AVPicture *picture, int pix_fmt, int width, int height); -/* Free a picture previously allocated by avpicture_alloc. */ +/** + * Free a picture previously allocated by avpicture_alloc(). + * + * @param picture The AVPicture to be freed. + */ void avpicture_free(AVPicture *picture); int avpicture_fill(AVPicture *picture, uint8_t *ptr, |