From cefcbacecbf29ef439a6674d59df6ed3b37f6e36 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 17 Apr 2003 12:22:56 +0000 Subject: [PATCH] Removed the default value from the function definition. --- p_mp3.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/p_mp3.cpp b/p_mp3.cpp index f7db318bc..6210f1ba7 100644 --- a/p_mp3.cpp +++ b/p_mp3.cpp @@ -13,7 +13,7 @@ /*! \file - \version \$Id: p_mp3.cpp,v 1.10 2003/04/13 15:23:02 mosu Exp $ + \version \$Id: p_mp3.cpp,v 1.11 2003/04/17 12:22:56 mosu Exp $ \brief MP3 output module \author Moritz Bunkus */ @@ -36,8 +36,7 @@ mp3_packetizer_c::mp3_packetizer_c(unsigned long nsamples_per_sec, int nchannels, track_info_t *nti) - throw (error_c): - q_c(nti) { + throw (error_c): q_c(nti) { samples_per_sec = nsamples_per_sec; channels = nchannels; bytes_output = 0; @@ -192,7 +191,7 @@ void mp3_packetizer_c::set_header() { } int mp3_packetizer_c::process(unsigned char *buf, int size, - int64_t timecode = -1, int64_t) { + int64_t timecode, int64_t) { unsigned char *packet; unsigned long header; mp3_header_t mp3header;