diff options
author | Vladimir Voroshilov <voroshil@gmail.com> | 2011-10-30 10:52:06 +0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-30 15:39:26 +0100 |
commit | 02fa529539d647abab1f7e23fe291ab5011424c3 (patch) | |
tree | 5a0c9ec2d94b5c269e51b0b70aceb4c70b09741d /libavformat/bit.c | |
parent | ab9c00b992c4d077815ccaf981b58f2ee3c9a00c (diff) | |
download | ffmpeg-02fa529539d647abab1f7e23fe291ab5011424c3.tar.gz |
Fix deprecated warnings in .bit (de)muxer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/bit.c')
-rw-r--r-- | libavformat/bit.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavformat/bit.c b/libavformat/bit.c index 85b419f24a..f0ffbe638a 100644 --- a/libavformat/bit.c +++ b/libavformat/bit.c @@ -50,7 +50,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap) { AVStream* st; - st=av_new_stream(s, 0); + st=avformat_new_stream(s, NULL); if (!st) return AVERROR(ENOMEM); @@ -67,7 +67,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap) static int read_packet(AVFormatContext *s, AVPacket *pkt) { - ByteIOContext *pb = s->pb; + AVIOContext *pb = s->pb; PutBitContext pbo; uint16_t buf[8 * MAX_FRAME_SIZE + 2]; int packet_size; @@ -78,12 +78,12 @@ static int read_packet(AVFormatContext *s, if(url_feof(pb)) return AVERROR_EOF; - get_le16(pb); // sync word - packet_size = get_le16(pb) / 8; + avio_rl16(pb); // sync word + packet_size = avio_rl16(pb) / 8; if(packet_size > MAX_FRAME_SIZE) return AVERROR_INVALIDDATA; - ret = get_buffer(pb, (uint8_t*)buf, (8 * packet_size) * sizeof(uint16_t)); + ret = avio_read(pb, (uint8_t*)buf, (8 * packet_size) * sizeof(uint16_t)); if(ret<0) return ret; if(ret != 8 * packet_size * sizeof(uint16_t)) @@ -131,13 +131,13 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt) GetBitContext gb; int i; - put_le16(pb, SYNC_WORD); - put_le16(pb, 8 * 10); + avio_wl16(pb, SYNC_WORD); + avio_wl16(pb, 8 * 10); init_get_bits(&gb, pkt->data, 8*10); for(i=0; i< 8 * 10; i++) - put_le16(pb, get_bits1(&gb) ? BIT_1 : BIT_0); - put_flush_packet(pb); + avio_wl16(pb, get_bits1(&gb) ? BIT_1 : BIT_0); + avio_flush(pb); return 0; } |