summaryrefslogtreecommitdiff
path: root/libavformat/avio.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-06-08 01:10:11 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-06-08 01:17:26 +0200
commitce838ad950fcf8b2a8823d7606a05077ebe91f9f (patch)
treef179849ca6dfad3bd9921ba205cb92a9a4d9036c /libavformat/avio.h
parent8985e7c56130b42f6184b064b7141e365f59356b (diff)
parent252d6200c36e7eaa79f8d5205b7d731179e94897 (diff)
downloadffmpeg-ce838ad950fcf8b2a8823d7606a05077ebe91f9f.tar.gz
Merge commit '252d6200c36e7eaa79f8d5205b7d731179e94897'
* commit '252d6200c36e7eaa79f8d5205b7d731179e94897': avio: Add avio_put_str16be Conflicts: doc/APIchanges libavformat/avio.h libavformat/aviobuf.c libavformat/version.h The FFmpeg implementation is kept as requested by ubitux Doxy improvements merged Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r--libavformat/avio.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h
index 51913e39fc..5c5aa6d0f0 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -315,12 +315,18 @@ int avio_put_str(AVIOContext *s, const char *str);
/**
* Convert an UTF-8 string to UTF-16LE and write it.
+ * @param s the AVIOContext
+ * @param str NULL-terminated UTF-8 string
+ *
* @return number of bytes written.
*/
int avio_put_str16le(AVIOContext *s, const char *str);
/**
* Convert an UTF-8 string to UTF-16BE and write it.
+ * @param s the AVIOContext
+ * @param str NULL-terminated UTF-8 string
+ *
* @return number of bytes written.
*/
int avio_put_str16be(AVIOContext *s, const char *str);