From 117a5490bd57adcb0be3274222e89fc6c7107f8b Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Mon, 13 Oct 2003 10:59:57 +0000 Subject: init_put_bits changed Originally committed as revision 2369 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mpeg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/mpeg.c') diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index 98103a6b28..b7add0dff9 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -71,7 +71,7 @@ static int put_pack_header(AVFormatContext *ctx, MpegMuxContext *s = ctx->priv_data; PutBitContext pb; - init_put_bits(&pb, buf, 128, NULL, NULL); + init_put_bits(&pb, buf, 128); put_bits(&pb, 32, PACK_START_CODE); if (s->is_mpeg2) { @@ -107,7 +107,7 @@ static int put_system_header(AVFormatContext *ctx, uint8_t *buf) int size, rate_bound, i, private_stream_coded, id; PutBitContext pb; - init_put_bits(&pb, buf, 128, NULL, NULL); + init_put_bits(&pb, buf, 128); put_bits(&pb, 32, SYSTEM_HEADER_START_CODE); put_bits(&pb, 16, 0); -- cgit v1.2.3