diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-11-07 09:23:11 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-11-07 09:23:11 +0000 |
commit | 2e0a80a12870948397a2dfea48788be4586f83b0 (patch) | |
tree | c22fa317ed820625c588b93154a276435801efec | |
parent | a4cb56aaf4ac26bca02ef035fdc765cf90e8c6c6 (diff) | |
download | ffmpeg-2e0a80a12870948397a2dfea48788be4586f83b0.tar.gz |
Document sws_freeContext().
Originally committed as revision 29844 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index abc23fcf40..9a088af3fc 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -112,6 +112,10 @@ typedef struct { struct SwsContext; +/** + * Frees the swscaler context swsContext. + * If swsContext is NULL, then does nothing. + */ void sws_freeContext(struct SwsContext *swsContext); /** |