comparison libmpdemux/demuxer.h @ 18934:a3788ff5d0b6

Rename mkv_sh_sub_t to sh_sub_t, move it to demuxer.h.
author eugeni
date Fri, 07 Jul 2006 18:02:49 +0000
parents d9a75b26da6c
children 9e95ac641e77
comparison
equal deleted inserted replaced
18933:4d4ecbaa9f54 18934:a3788ff5d0b6
119 char *encoder; 119 char *encoder;
120 char *comments; 120 char *comments;
121 char *copyright; 121 char *copyright;
122 } demuxer_info_t; 122 } demuxer_info_t;
123 123
124 typedef struct {
125 char type; // t = text, v = VobSub
126 int has_palette; // If we have a valid palette
127 unsigned int palette[16]; // for VobSubs
128 int width, height; // for VobSubs
129 int custom_colors;
130 unsigned int colors[4];
131 int forced_subs_only;
132 } sh_sub_t;
133
124 #define MAX_A_STREAMS 256 134 #define MAX_A_STREAMS 256
125 #define MAX_V_STREAMS 256 135 #define MAX_V_STREAMS 256
126 136
127 struct demuxer_st; 137 struct demuxer_st;
128 138