[vlc-commits] es_out: export vlc_es_id_get_out (locally)
Thomas Guillem
git at videolan.org
Thu Jun 20 08:59:24 CEST 2019
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Mon Jun 17 15:05:25 2019 +0200| [3e46f5238d5629196c9b55a126646db33711e2e6] | committer: Thomas Guillem
es_out: export vlc_es_id_get_out (locally)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3e46f5238d5629196c9b55a126646db33711e2e6
---
src/input/es_out.c | 2 +-
src/input/es_out.h | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/input/es_out.c b/src/input/es_out.c
index 6a76dead3f..d68999096f 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -3734,7 +3734,7 @@ static void EsOutDeleteInfoEs( es_out_t *out, es_out_id_t *es )
}
}
-static inline es_out_id_t *vlc_es_id_get_out(vlc_es_id_t *id)
+es_out_id_t *vlc_es_id_get_out(vlc_es_id_t *id)
{
return container_of(id, es_out_id_t, id);
}
diff --git a/src/input/es_out.h b/src/input/es_out.h
index 36aeae820f..4e885b4fad 100644
--- a/src/input/es_out.h
+++ b/src/input/es_out.h
@@ -169,4 +169,6 @@ static inline void es_out_Eos( es_out_t *p_out )
es_out_t *input_EsOutNew( input_thread_t *, float rate );
es_out_t *input_EsOutTimeshiftNew( input_thread_t *, es_out_t *, float i_rate );
+es_out_id_t *vlc_es_id_get_out(vlc_es_id_t *id);
+
#endif
More information about the vlc-commits
mailing list