diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 01:19:56 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 07:22:31 +0100 |
commit | 055cda8acccad3e7414132cddf0dc4e22b1ae00b (patch) | |
tree | 2701fb28fcb20094b5c0f851dbb980110ea31fda /libavformat/act.c | |
parent | f3c47e4100993040bab67285d373e54325259d9a (diff) | |
download | ffmpeg-055cda8acccad3e7414132cddf0dc4e22b1ae00b.tar.gz |
Rename remaining get_byte to avio_r8.
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 6e2772c733..329d0b026c 100644 --- a/libavformat/act.c +++ b/libavformat/act.c @@ -94,7 +94,7 @@ static int read_header(AVFormatContext *s, avio_seek(pb, 257, SEEK_SET); msec=get_le16(pb); - sec=get_byte(pb); + sec=avio_r8(pb); min=get_le32(pb); st->duration = av_rescale(1000*(min*60+sec)+msec, st->codec->sample_rate, 1000 * st->codec->frame_size); |