summaryrefslogtreecommitdiffstats
path: root/sub/ass_mp.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-11 12:16:42 +0200
committerwm4 <wm4@nowhere>2013-06-23 22:33:59 +0200
commit4f5e12136de717896bf322e75d42de1af09e1c3e (patch)
treef6b40f0ae7ab2ef410f1449e9626ab1140862836 /sub/ass_mp.c
parentd064c69e1c958514c3ef4d7871bcd92c8ff92de9 (diff)
downloadmpv-4f5e12136de717896bf322e75d42de1af09e1c3e.tar.bz2
mpv-4f5e12136de717896bf322e75d42de1af09e1c3e.tar.xz
stream: remove padding parameter from stream_read_complete()
Seems like a completely unnecessary complication. Instead, always add a 1 byte padding (could be extended if a caller needs it), and clear it. Also add some documentation. There was some, but it was outdated and incomplete.
Diffstat (limited to 'sub/ass_mp.c')
-rw-r--r--sub/ass_mp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sub/ass_mp.c b/sub/ass_mp.c
index 258dd57688..0efbdd9c90 100644
--- a/sub/ass_mp.c
+++ b/sub/ass_mp.c
@@ -122,7 +122,7 @@ ASS_Track *mp_ass_read_stream(ASS_Library *library, const char *fname,
if (!s)
// Stream code should have printed an error already
return NULL;
- struct bstr content = stream_read_complete(s, NULL, 100000000, 1);
+ struct bstr content = stream_read_complete(s, NULL, 100000000);
if (content.start == NULL)
mp_tmsg(MSGT_ASS, MSGL_ERR, "Refusing to load subtitle file "
"larger than 100 MB: %s\n", fname);