summaryrefslogtreecommitdiffstats
path: root/sub/dec_sub.h
diff options
context:
space:
mode:
Diffstat (limited to 'sub/dec_sub.h')
-rw-r--r--sub/dec_sub.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sub/dec_sub.h b/sub/dec_sub.h
index b269326cac..9ff2b366bd 100644
--- a/sub/dec_sub.h
+++ b/sub/dec_sub.h
@@ -6,7 +6,7 @@
#include "sub/sub.h"
-struct sh_sub;
+struct sh_stream;
struct ass_track;
struct MPOpts;
struct demux_packet;
@@ -29,11 +29,11 @@ void sub_set_video_fps(struct dec_sub *sub, double fps);
void sub_set_extradata(struct dec_sub *sub, void *data, int data_len);
void sub_set_ass_renderer(struct dec_sub *sub, struct ass_library *ass_library,
struct ass_renderer *ass_renderer);
-void sub_init_from_sh(struct dec_sub *sub, struct sh_sub *sh);
+void sub_init_from_sh(struct dec_sub *sub, struct sh_stream *sh);
bool sub_is_initialized(struct dec_sub *sub);
-bool sub_read_all_packets(struct dec_sub *sub, struct sh_sub *sh);
+bool sub_read_all_packets(struct dec_sub *sub, struct sh_stream *sh);
bool sub_accept_packets_in_advance(struct dec_sub *sub);
void sub_decode(struct dec_sub *sub, struct demux_packet *packet);
void sub_get_bitmaps(struct dec_sub *sub, struct mp_osd_res dim, double pts,