Browse Source

Doxygenize the comments for the avpicture_free() function.

Originally committed as revision 8080 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris 18 years ago
parent
commit
8fc3d25c0a
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      libavcodec/avcodec.h

+ 5
- 1
libavcodec/avcodec.h View File

@@ -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,


Loading…
Cancel
Save