comparison subreader.h @ 31179:de190efe4da3

Drop pointless _st suffix from 'struct stream'.
author diego
date Thu, 27 May 2010 20:38:25 +0000
parents c1a3f1bbba26
children b41cbf02f854
comparison
equal deleted inserted replaced
31178:986892228d92 31179:de190efe4da3
86 86
87 sub_data* sub_read_file (char *filename, float pts); 87 sub_data* sub_read_file (char *filename, float pts);
88 subtitle* subcp_recode (subtitle *sub); 88 subtitle* subcp_recode (subtitle *sub);
89 // enca_fd is the file enca uses to determine the codepage. 89 // enca_fd is the file enca uses to determine the codepage.
90 // setting to NULL disables enca. 90 // setting to NULL disables enca.
91 struct stream_st; 91 struct stream;
92 void subcp_open (struct stream_st *st); /* for demux_ogg.c */ 92 void subcp_open (struct stream *st); /* for demux_ogg.c */
93 void subcp_close (void); /* for demux_ogg.c */ 93 void subcp_close (void); /* for demux_ogg.c */
94 #ifdef CONFIG_ENCA 94 #ifdef CONFIG_ENCA
95 const char* guess_buffer_cp(unsigned char* buffer, int buflen, const char *preferred_language, const char *fallback); 95 const char* guess_buffer_cp(unsigned char* buffer, int buflen, const char *preferred_language, const char *fallback);
96 const char* guess_cp(struct stream_st *st, const char *preferred_language, const char *fallback); 96 const char* guess_cp(struct stream *st, const char *preferred_language, const char *fallback);
97 #endif 97 #endif
98 char ** sub_filenames(const char *path, char *fname); 98 char ** sub_filenames(const char *path, char *fname);
99 void list_sub_file(sub_data* subd); 99 void list_sub_file(sub_data* subd);
100 void dump_srt(sub_data* subd, float fps); 100 void dump_srt(sub_data* subd, float fps);
101 void dump_mpsub(sub_data* subd, float fps); 101 void dump_mpsub(sub_data* subd, float fps);