summaryrefslogtreecommitdiff
path: root/include/asterisk/stream.h
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-02-16 07:28:33 -0700
committerGeorge Joseph <gjoseph@digium.com>2017-02-16 09:10:02 -0600
commitf8f513d363fd10148976c592cbc8be860cda28ab (patch)
tree1ec0ac62c5300d992096708e8855ea6086b51f6d /include/asterisk/stream.h
parenta9c15a0e4c987d053b0ab43312946719d7655a3f (diff)
stream: Rename creates/destroys to allocs/frees
To be consistent with sdp implementation. Change-Id: I714e300939b4188f58ca66ce9d1e84b287009500
Diffstat (limited to 'include/asterisk/stream.h')
-rw-r--r--include/asterisk/stream.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asterisk/stream.h b/include/asterisk/stream.h
index 9fb466013..edb00b9eb 100644
--- a/include/asterisk/stream.h
+++ b/include/asterisk/stream.h
@@ -84,7 +84,7 @@ enum ast_stream_state {
*
* \since 15
*/
-struct ast_stream *ast_stream_create(const char *name, enum ast_media_type type);
+struct ast_stream *ast_stream_alloc(const char *name, enum ast_media_type type);
/*!
* \brief Destroy a media stream representation
@@ -93,7 +93,7 @@ struct ast_stream *ast_stream_create(const char *name, enum ast_media_type type)
*
* \since 15
*/
-void ast_stream_destroy(struct ast_stream *stream);
+void ast_stream_free(struct ast_stream *stream);
/*!
* \brief Create a deep clone of an existing stream
@@ -209,7 +209,7 @@ int ast_stream_get_position(const struct ast_stream *stream);
*
* \since 15
*/
-struct ast_stream_topology *ast_stream_topology_create(void);
+struct ast_stream_topology *ast_stream_topology_alloc(void);
/*!
* \brief Create a deep clone of an existing stream topology
@@ -233,7 +233,7 @@ struct ast_stream_topology *ast_stream_topology_clone(
*
* \since 15
*/
-void ast_stream_topology_destroy(struct ast_stream_topology *topology);
+void ast_stream_topology_free(struct ast_stream_topology *topology);
/*!
* \brief Append a stream to the topology