summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mplayer.c b/mplayer.c
index cc8dc825e3..f99f426746 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -1117,9 +1117,9 @@ void add_subtitles(struct MPContext *mpctx, char *filename, float fps, int noerr
#ifdef CONFIG_ASS
if (opts->ass_enabled) {
#ifdef CONFIG_ICONV
- asst = ass_read_file(ass_library, filename, sub_cp);
+ asst = ass_read_stream(ass_library, filename, sub_cp);
#else
- asst = ass_read_file(ass_library, filename, 0);
+ asst = ass_read_stream(ass_library, filename, 0);
#endif
if (!asst) {
subd = sub_read_file(filename, fps);