[vlc-devel] [PATCH 01/11] vlc_input: add title angles

Francois Cartegnie fcvlcdev at free.fr
Tue May 5 17:56:59 CEST 2020


---
 include/vlc_input.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/vlc_input.h b/include/vlc_input.h
index 7d24f11830..aa4374b9ad 100644
--- a/include/vlc_input.h
+++ b/include/vlc_input.h
@@ -101,6 +101,7 @@ typedef struct input_title_t
     /* Title seekpoint */
     int         i_seekpoint;
     seekpoint_t **seekpoint;
+    unsigned    i_additional_angles; /* controllable viewing angles */
 } input_title_t;
 
 static inline input_title_t *vlc_input_title_New(void)
@@ -112,6 +113,7 @@ static inline input_title_t *vlc_input_title_New(void)
     t->psz_name = NULL;
     t->i_flags = 0;
     t->i_length = 0;
+    t->i_additional_angles = 0;
     t->i_seekpoint = 0;
     t->seekpoint = NULL;
 
@@ -139,6 +141,7 @@ static inline input_title_t *vlc_input_title_Duplicate( const input_title_t *t )
     if( t->psz_name ) dup->psz_name = strdup( t->psz_name );
     dup->i_flags     = t->i_flags;
     dup->i_length    = t->i_length;
+    dup->i_additional_angles = t->i_additional_angles;
     if( t->i_seekpoint > 0 )
     {
         dup->seekpoint = (seekpoint_t**)vlc_alloc( t->i_seekpoint, sizeof(seekpoint_t*) );
-- 
2.25.4



More information about the vlc-devel mailing list