[vlc-commits] api: expose input_DecoderSetSpuHighlight

Francois Cartegnie git at videolan.org
Mon Sep 3 23:26:19 CEST 2018


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Aug 29 18:07:57 2018 +0200| [69017672f1991f1182c3f8b56dbc03166e9fb622] | committer: Francois Cartegnie

api: expose input_DecoderSetSpuHighlight

Allows changing Highlight on input decoders

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=69017672f1991f1182c3f8b56dbc03166e9fb622
---

 include/vlc_input.h | 1 +
 src/input/decoder.h | 1 -
 src/libvlccore.sym  | 1 +
 3 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/include/vlc_input.h b/include/vlc_input.h
index 72582c55af..0c1d5a10b7 100644
--- a/include/vlc_input.h
+++ b/include/vlc_input.h
@@ -714,6 +714,7 @@ VLC_API void input_DecoderDelete( decoder_t * );
 VLC_API void input_DecoderDecode( decoder_t *, block_t *, bool b_do_pace );
 VLC_API void input_DecoderDrain( decoder_t * );
 VLC_API void input_DecoderFlush( decoder_t * );
+VLC_API int  input_DecoderSetSpuHighlight( decoder_t *, const vlc_spu_highlight_t * );
 
 /**
  * This function creates a sane filename path.
diff --git a/src/input/decoder.h b/src/input/decoder.h
index 67d29cdc3a..ec5525bd50 100644
--- a/src/input/decoder.h
+++ b/src/input/decoder.h
@@ -120,6 +120,5 @@ void input_DecoderGetObjects( decoder_t *, vout_thread_t **, audio_output_t ** )
 void input_DecoderSetVoutMouseEvent( decoder_t *, vlc_mouse_event, void * );
 int  input_DecoderAddVoutOverlay( decoder_t *, subpicture_t *, int * );
 int  input_DecoderFlushVoutOverlay( decoder_t *, int );
-int  input_DecoderSetSpuHighlight( decoder_t *, const vlc_spu_highlight_t * );
 
 #endif
diff --git a/src/libvlccore.sym b/src/libvlccore.sym
index e4698a6398..a1709cb9f6 100644
--- a/src/libvlccore.sym
+++ b/src/libvlccore.sym
@@ -159,6 +159,7 @@ input_DecoderDelete
 input_DecoderDecode
 input_DecoderDrain
 input_DecoderFlush
+input_DecoderSetSpuHighlight
 input_GetItem
 input_item_AddInfo
 input_item_AddOption



More information about the vlc-commits mailing list