summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/md5proto.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/md5proto.c b/libavformat/md5proto.c
index c580bfde80..796b4ea682 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,
};