diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 01:36:32 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 07:22:31 +0100 |
commit | c142e2a00feaa68a7ed627c3d5e3752ea535704c (patch) | |
tree | 25a60818fa768170d38f0780718944acdaf944b7 /libavformat/bintext.c | |
parent | 49651063da054070f11b1387bb50b85b7ffec591 (diff) | |
download | ffmpeg-c142e2a00feaa68a7ed627c3d5e3752ea535704c.tar.gz |
Rename remaining get_le16 to avio_rl16.
Diffstat (limited to 'libavformat/bintext.c')
-rw-r--r-- | libavformat/bintext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/bintext.c b/libavformat/bintext.c index 8c155bd769..a39ab291e4 100644 --- a/libavformat/bintext.c +++ b/libavformat/bintext.c @@ -179,8 +179,8 @@ static int xbin_read_header(AVFormatContext *s, return AVERROR(ENOMEM); avio_skip(pb, 5); - st->codec->width = get_le16(pb)<<3; - st->codec->height = get_le16(pb); + st->codec->width = avio_rl16(pb)<<3; + st->codec->height = avio_rl16(pb); fontheight = avio_r8(pb); st->codec->height *= fontheight; flags = avio_r8(pb); |