diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-08-05 18:59:21 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-08-05 18:59:21 +0200 |
commit | be7150d497484254de79a4097273c0bdce36d526 (patch) | |
tree | f9945f9fc175d99126c750673cd9b3e975c21eff /libavformat/teeproto.c | |
parent | a16018461b2f5c652b246a9aed1ab04623e96470 (diff) | |
download | ffmpeg-be7150d497484254de79a4097273c0bdce36d526.tar.gz |
avformat/teeproto: set forgotten url_close()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/teeproto.c')
-rw-r--r-- | libavformat/teeproto.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/teeproto.c b/libavformat/teeproto.c index e22fba2d40..e532bc7750 100644 --- a/libavformat/teeproto.c +++ b/libavformat/teeproto.c @@ -140,6 +140,7 @@ const URLProtocol ff_tee_protocol = { .name = "tee", .url_open = tee_open, .url_write = tee_write, + .url_close = tee_close, .priv_data_size = sizeof(TeeContext), .priv_data_class = &tee_class, .default_whitelist = "crypto,file,http,https,httpproxy,rtmp,tcp,tls" |