diff options
author | Clément Bœsch | 2011-11-14 01:36:32 +0100 |
---|---|---|
committer | Clément Bœsch | 2011-11-14 07:22:31 +0100 |
commit | c142e2a00feaa68a7ed627c3d5e3752ea535704c (patch) | |
tree | 25a60818fa768170d38f0780718944acdaf944b7 /libavformat/act.c | |
parent | 49651063da054070f11b1387bb50b85b7ffec591 (diff) |
Rename remaining get_le16 to avio_rl16.
Diffstat (limited to 'libavformat/act.c')
-rw-r--r-- | libavformat/act.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/act.c b/libavformat/act.c index e55b43170b..2c80480dcd 100644 --- a/libavformat/act.c +++ b/libavformat/act.c @@ -93,7 +93,7 @@ static int read_header(AVFormatContext *s, st->codec->codec_id=CODEC_ID_G729; avio_seek(pb, 257, SEEK_SET); - msec=get_le16(pb); + msec=avio_rl16(pb); sec=avio_r8(pb); min=get_le32(pb); |