Commit 8bf256bc authored by Stefano Sabatini's avatar Stefano Sabatini

Document url_get_filename().

Originally committed as revision 25310 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a5c33faa
...@@ -190,6 +190,12 @@ int url_get_file_handle(URLContext *h); ...@@ -190,6 +190,12 @@ int url_get_file_handle(URLContext *h);
* @return maximum packet size in bytes * @return maximum packet size in bytes
*/ */
int url_get_max_packet_size(URLContext *h); 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); void url_get_filename(URLContext *h, char *buf, int buf_size);
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment