mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 07:40:00 +08:00
avio: rename ByteIOContext to AVIOContext.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:

committed by
Ronald S. Bultje

parent
70aa916e46
commit
ae628ec1fd
@ -44,7 +44,7 @@ static int vc1t_probe(AVProbeData *p)
|
||||
static int vc1t_read_header(AVFormatContext *s,
|
||||
AVFormatParameters *ap)
|
||||
{
|
||||
ByteIOContext *pb = s->pb;
|
||||
AVIOContext *pb = s->pb;
|
||||
AVStream *st;
|
||||
int frames;
|
||||
uint32_t fps;
|
||||
@ -87,7 +87,7 @@ static int vc1t_read_header(AVFormatContext *s,
|
||||
static int vc1t_read_packet(AVFormatContext *s,
|
||||
AVPacket *pkt)
|
||||
{
|
||||
ByteIOContext *pb = s->pb;
|
||||
AVIOContext *pb = s->pb;
|
||||
int frame_size;
|
||||
int keyframe = 0;
|
||||
uint32_t pts;
|
||||
|
Reference in New Issue
Block a user