diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-17 21:41:50 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2009-02-17 21:41:50 +0000 |
commit | 1f1ff73156a93d6c911997b14181e6abad966d1f (patch) | |
tree | 5232c4f912e96d8a9dffa37e9c524eaeec5cc360 | |
parent | 7379d5bc0be5a1babfce8cd518c2329f05af3087 (diff) | |
download | ffmpeg-1f1ff73156a93d6c911997b14181e6abad966d1f.tar.gz |
remove now useless get_str16() from rmdec.c
Originally committed as revision 17397 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/rmdec.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 6bcf08ab50..5e3b3c760c 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -62,11 +62,6 @@ static inline void get_strl(ByteIOContext *pb, char *buf, int buf_size, int len) if (buf_size > 0) *q = '\0'; } -static void get_str16(ByteIOContext *pb, char *buf, int buf_size) -{ - get_strl(pb, buf, buf_size, get_be16(pb)); -} - static void get_str8(ByteIOContext *pb, char *buf, int buf_size) { get_strl(pb, buf, buf_size, get_byte(pb)); |