diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 00:36:45 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-11-14 07:22:30 +0100 |
commit | eef3ea8c710d87da889e31e65b40b36cc7a2648e (patch) | |
tree | 2d8048e916d68051dcd30dbfc6bea140dd47087f /libavformat/act.c | |
parent | 73af8ea356011be169bfd1b046f7d86c10ea89cb (diff) | |
download | ffmpeg-eef3ea8c710d87da889e31e65b40b36cc7a2648e.tar.gz |
Rename remaining ByteIOContext to AVIOContext.
Diffstat (limited to 'libavformat/act.c')
-rw-r--r-- | libavformat/act.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/act.c b/libavformat/act.c index bbda1ae409..a2e8b9f8e1 100644 --- a/libavformat/act.c +++ b/libavformat/act.c @@ -63,7 +63,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap) { ACTContext* ctx = s->priv_data; - ByteIOContext *pb = s->pb; + AVIOContext *pb = s->pb; int size; AVStream* st; @@ -111,7 +111,7 @@ static int read_packet(AVFormatContext *s, AVPacket *pkt) { ACTContext *ctx = s->priv_data; - ByteIOContext *pb = s->pb; + AVIOContext *pb = s->pb; int ret; int frame_size=s->streams[0]->codec->sample_rate==8000?10:22; |