Commit 8bd9d590 authored by aurel's avatar aurel

remove now useless get_str16() from rmdec.c

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17397 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 801764fb
...@@ -62,11 +62,6 @@ static inline void get_strl(ByteIOContext *pb, char *buf, int buf_size, int len) ...@@ -62,11 +62,6 @@ static inline void get_strl(ByteIOContext *pb, char *buf, int buf_size, int len)
if (buf_size > 0) *q = '\0'; 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) static void get_str8(ByteIOContext *pb, char *buf, int buf_size)
{ {
get_strl(pb, buf, buf_size, get_byte(pb)); get_strl(pb, buf, buf_size, get_byte(pb));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment