[vlc-commits] input/stream.h: removed duplicate declaration of stream_FilterNew
Filip Roséen
git at videolan.org
Sun Jul 17 09:44:52 CEST 2016
vlc | branch: master | Filip Roséen <filip at videolabs.io> | Wed Jul 13 19:35:15 2016 +0200| [737089f068589bad690277c00b8f9d69c4cf342b] | committer: Rémi Denis-Courmont
input/stream.h: removed duplicate declaration of stream_FilterNew
This function is already declared in include/vlc_stream.h, as such there
is no need for a duplicate declaration (with duplicate documentation).
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=737089f068589bad690277c00b8f9d69c4cf342b
---
src/input/stream.h | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/src/input/stream.h b/src/input/stream.h
index 261ba7c..fa15f87 100644
--- a/src/input/stream.h
+++ b/src/input/stream.h
@@ -38,15 +38,6 @@ void stream_CommonDelete( stream_t *s );
stream_t *stream_AccessNew(vlc_object_t *, input_thread_t *, bool, const char *);
/**
- * This function creates a new stream_t filter.
- *
- * You must release it using stream_Delete unless it is used as a
- * source to another filter.
- */
-stream_t *stream_FilterNew( stream_t *p_source,
- const char *psz_stream_filter );
-
-/**
* Automatically wraps a stream with any applicable stream filter.
* @return the (outermost/downstream) stream filter; if no filters were added,
* then the function return the source parameter.
More information about the vlc-commits
mailing list