diff mpeg.c @ 276:3dd3646e0164 libavformat

init_put_bits changed
author alex
date Mon, 13 Oct 2003 10:59:57 +0000
parents 3c299d432ca4
children a313e1080322
line wrap: on
line diff
--- a/mpeg.c	Sat Oct 04 17:41:56 2003 +0000
+++ b/mpeg.c	Mon Oct 13 10:59:57 2003 +0000
@@ -71,7 +71,7 @@
     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 @@
     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);