From: Laurent Aimar Date: Tue, 17 Mar 2009 21:19:38 +0000 (+0100) Subject: Removed dead code. X-Git-Tag: 1.1.0-ff~6034 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6701b274cdc557eb7c0e7978c90c7a4f610edec0;p=vlc Removed dead code. --- diff --git a/include/vlc_codecs.h b/include/vlc_codecs.h index 85176d0205..c9ff3292d9 100644 --- a/include/vlc_codecs.h +++ b/include/vlc_codecs.h @@ -393,31 +393,4 @@ static inline void sf_tag_to_fourcc( GUID *guid_tag, if( ppsz_name ) *ppsz_name = sub_format_tag_to_fourcc[i].psz_name; } -/** - * Structure to hold information concerning subtitles. - * Used between demuxers and decoders of subtitles. - */ -typedef struct es_sys_t -{ - char *psz_header; /* for 'ssa ' and 'subt' */ - - /* for spudec */ - unsigned int i_orig_height; - unsigned int i_orig_width; - unsigned int i_origin_x; - unsigned int i_origin_y; - unsigned int i_scale_h; - unsigned int i_scale_v; - unsigned int i_alpha; - bool b_smooth; - mtime_t i_fade_in; - mtime_t i_fade_out; - unsigned int i_align; - mtime_t i_time_offset; - bool b_forced_subs; - unsigned int palette[16]; - unsigned int colors[4]; - -} subtitle_data_t; - #endif /* "codecs.h" */