diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-01-21 19:18:08 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-21 20:21:51 +0000 |
commit | dccbd97d72991f4df63542e1ee03db2f8d7a0238 (patch) | |
tree | 7a0942fd63c0f8787535de6b3887e2a36392b770 /libavformat/mmst.c | |
parent | 4efd5cf34b7a04f87805aa0f09913d1d122d300c (diff) | |
download | ffmpeg-dccbd97d72991f4df63542e1ee03db2f8d7a0238.tar.gz |
lavf: move ff_put_str16_nolen from asf to avio and rename it
It will be useful in the mp3 muxer.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavformat/mmst.c')
-rw-r--r-- | libavformat/mmst.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/mmst.c b/libavformat/mmst.c index 57cca5d0d4..08e3b3e660 100644 --- a/libavformat/mmst.c +++ b/libavformat/mmst.c @@ -34,7 +34,6 @@ #include "libavutil/intreadwrite.h" #include "libavcodec/bytestream.h" #include "network.h" -#include "asf.h" #define LOCAL_ADDRESS 0xc0a80081 // FIXME get and use correct local ip address. #define LOCAL_PORT 1037 // as above. @@ -159,7 +158,7 @@ static void mms_put_utf16(MMSContext *mms, uint8_t *src) init_put_byte(&bic, mms->write_out_ptr, sizeof(mms->out_buffer) - size, 1, NULL, NULL, NULL, NULL); - len = ff_put_str16_nolen(&bic, src); + len = avio_put_str16le(&bic, src); mms->write_out_ptr += len; } |