mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
Rename remaining get_byte to avio_r8.
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user