mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-17 23:17:41 +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
@ -39,7 +39,7 @@ typedef struct {
|
||||
int sample_start_pos;
|
||||
} IssDemuxContext;
|
||||
|
||||
static void get_token(ByteIOContext *s, char *buf, int maxlen)
|
||||
static void get_token(AVIOContext *s, char *buf, int maxlen)
|
||||
{
|
||||
int i = 0;
|
||||
char c;
|
||||
@ -68,7 +68,7 @@ static int iss_probe(AVProbeData *p)
|
||||
static av_cold int iss_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
||||
{
|
||||
IssDemuxContext *iss = s->priv_data;
|
||||
ByteIOContext *pb = s->pb;
|
||||
AVIOContext *pb = s->pb;
|
||||
AVStream *st;
|
||||
char token[MAX_TOKEN_SIZE];
|
||||
int stereo, rate_divisor;
|
||||
|
Reference in New Issue
Block a user