summaryrefslogtreecommitdiff
path: root/libavformat/subtitles.h
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-12-30 23:14:34 +0100
committerClément Bœsch <ubitux@gmail.com>2012-12-30 23:14:34 +0100
commit949506191a8199818327203e825edf1a804603b6 (patch)
tree1ce87eb63524c08dd6c35d65bcc8ed8c231a9181 /libavformat/subtitles.h
parent725d6c615c78be2635ad8d90727da3b80d50d14c (diff)
downloadffmpeg-949506191a8199818327203e825edf1a804603b6.tar.gz
lavf/subtitles: fix CLRF/CRLF typo.
Diffstat (limited to 'libavformat/subtitles.h')
-rw-r--r--libavformat/subtitles.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/subtitles.h b/libavformat/subtitles.h
index eb76192fdf..455b374f25 100644
--- a/libavformat/subtitles.h
+++ b/libavformat/subtitles.h
@@ -85,7 +85,7 @@ const char *ff_smil_get_attr_ptr(const char *s, const char *attr);
* @brief Read a subtitles chunk.
*
* A chunk is defined by a multiline "event", ending with a second line break.
- * The trailing line breaks are trimmed. CLRF are supported.
+ * The trailing line breaks are trimmed. CRLF are supported.
* Example: "foo\r\nbar\r\n\r\nnext" will print "foo\r\nbar" into buf, and pb
* will focus on the 'n' of the "next" string.
*