From ae628ec1fd7f54c102bf9e667a3edd404b9b9128 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 20 Feb 2011 11:04:12 +0100 Subject: avio: rename ByteIOContext to AVIOContext. Signed-off-by: Ronald S. Bultje --- libavformat/msnwc_tcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/msnwc_tcp.c') diff --git a/libavformat/msnwc_tcp.c b/libavformat/msnwc_tcp.c index f9cde02780..4408c18601 100644 --- a/libavformat/msnwc_tcp.c +++ b/libavformat/msnwc_tcp.c @@ -71,7 +71,7 @@ static int msnwc_tcp_probe(AVProbeData *p) static int msnwc_tcp_read_header(AVFormatContext *ctx, AVFormatParameters *ap) { - ByteIOContext *pb = ctx->pb; + AVIOContext *pb = ctx->pb; AVCodecContext *codec; AVStream *st; @@ -100,7 +100,7 @@ static int msnwc_tcp_read_header(AVFormatContext *ctx, AVFormatParameters *ap) static int msnwc_tcp_read_packet(AVFormatContext *ctx, AVPacket *pkt) { - ByteIOContext *pb = ctx->pb; + AVIOContext *pb = ctx->pb; uint16_t keyframe; uint32_t size, timestamp; -- cgit v1.2.3