diff ac3enc.c @ 1522:79dddc5cd990 libavcodec

removed the obsolete and unused parameters of init_put_bits
author alex
date Sun, 12 Oct 2003 21:25:00 +0000
parents 4d67eb341a0c
children 932d306bf1dc
line wrap: on
line diff
--- a/ac3enc.c	Sun Oct 12 19:18:37 2003 +0000
+++ b/ac3enc.c	Sun Oct 12 21:25:00 2003 +0000
@@ -904,7 +904,7 @@
 /* output the AC3 frame header */
 static void output_frame_header(AC3EncodeContext *s, unsigned char *frame)
 {
-    init_put_bits(&s->pb, frame, AC3_MAX_CODED_FRAME_SIZE, NULL, NULL);
+    init_put_bits(&s->pb, frame, AC3_MAX_CODED_FRAME_SIZE);
 
     put_bits(&s->pb, 16, 0x0b77); /* frame header */
     put_bits(&s->pb, 16, 0); /* crc1: will be filled later */