[vlc-devel] [PATCH 1/2] es_out: export vlc_es_id_get_out (locally)
Thomas Guillem
thomas at gllm.fr
Tue Jun 18 18:53:34 CEST 2019
---
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
--
2.20.1
More information about the vlc-devel
mailing list