Rename remaining get_byte to avio_r8.

This commit is contained in:
Clément Bœsch
2011-11-14 01:19:56 +01:00
parent f3c47e4100
commit 055cda8acc
4 changed files with 8 additions and 8 deletions

View File

@ -51,7 +51,7 @@ static int g723_1_read_packet(AVFormatContext *s, AVPacket *pkt)
int size, byte, ret;
pkt->pos = url_ftell(s->pb);
byte = get_byte(s->pb);
byte = avio_r8(s->pb);
size = frame_size[byte & 3];
ret = av_new_packet(pkt, size);