diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-02 09:16:52 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-10-02 09:16:52 +0000 |
commit | 8bf256bcc064ffa073b67e237f3141427d1f396c (patch) | |
tree | 8a9ef3b2594780930b0404eceb59f59b35edd2ce /libavformat | |
parent | a5c33faaccec6787419fe373a9e7ae0932b15ee1 (diff) | |
download | ffmpeg-8bf256bcc064ffa073b67e237f3141427d1f396c.tar.gz |
Document url_get_filename().
Originally committed as revision 25310 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/avio.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 1e97357e38..223bb436a6 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -190,6 +190,12 @@ int url_get_file_handle(URLContext *h); * @return maximum packet size in bytes */ int url_get_max_packet_size(URLContext *h); + +/** + * Copy the filename of the resource accessed by h to buf. + * + * @param buf_size size in bytes of buf + */ void url_get_filename(URLContext *h, char *buf, int buf_size); /** |