[FFmpeg-cvslog] md5proto: Remove the get_file_handle function

Martin Storsjö git at videolan.org
Fri Dec 2 01:00:52 CET 2011


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Thu Dec  1 11:30:03 2011 +0200| [6af354436ca99324b6d35e8a7a24c1abf6667595] | committer: Martin Storsjö

md5proto: Remove the get_file_handle function

The private data pointer isn't a file handle, this protocol
doesn't have any file handle to return.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6af354436ca99324b6d35e8a7a24c1abf6667595
---

 libavformat/md5proto.c |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/libavformat/md5proto.c b/libavformat/md5proto.c
index c580bfd..796b4ea 100644
--- a/libavformat/md5proto.c
+++ b/libavformat/md5proto.c
@@ -79,16 +79,11 @@ static int md5_close(URLContext *h)
     return err;
 }
 
-static int md5_get_handle(URLContext *h)
-{
-    return (intptr_t)h->priv_data;
-}
 
 URLProtocol ff_md5_protocol = {
     .name                = "md5",
     .url_open            = md5_open,
     .url_write           = md5_write,
     .url_close           = md5_close,
-    .url_get_file_handle = md5_get_handle,
     .priv_data_size      = PRIV_SIZE,
 };



More information about the ffmpeg-cvslog mailing list