summaryrefslogtreecommitdiff
path: root/libavcodec/mpegaudio.c
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2003-10-12 21:25:00 +0000
committerAlex Beregszaszi <alex@rtfs.hu>2003-10-12 21:25:00 +0000
commited7debda140ca5d1d8a7203abf92acb9f8eb112c (patch)
tree9c25183603e0d2793c81f0d1631a336190c38a4a /libavcodec/mpegaudio.c
parentd6896c49ccd3f02500d0397b63b4dda5d9e24ea9 (diff)
removed the obsolete and unused parameters of init_put_bits
Originally committed as revision 2366 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegaudio.c')
-rw-r--r--libavcodec/mpegaudio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegaudio.c b/libavcodec/mpegaudio.c
index f5b9223049..a6fe951c0c 100644
--- a/libavcodec/mpegaudio.c
+++ b/libavcodec/mpegaudio.c
@@ -765,7 +765,7 @@ static int MPA_encode_frame(AVCodecContext *avctx,
}
compute_bit_allocation(s, smr, bit_alloc, &padding);
- init_put_bits(&s->pb, frame, MPA_MAX_CODED_FRAME_SIZE, NULL, NULL);
+ init_put_bits(&s->pb, frame, MPA_MAX_CODED_FRAME_SIZE);
encode_frame(s, bit_alloc, padding);