diff options
Diffstat (limited to 'server/liblame_wrapper.cc')
-rw-r--r-- | server/liblame_wrapper.cc | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/server/liblame_wrapper.cc b/server/liblame_wrapper.cc index 2ffd923..c795c47 100644 --- a/server/liblame_wrapper.cc +++ b/server/liblame_wrapper.cc @@ -24,8 +24,13 @@ * along with MIaV; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include <config.h> #include "liblame_wrapper.h" + +#include <config.h> + +#include <stdio.h> +#include <string.h> + #include "configuration.h" #include "info.h" @@ -71,7 +76,7 @@ LibLAMEWrapper::LibLAMEWrapper() lame_set_copyright(gfp, 0); // is there a copyright on the encoded data? lame_set_original(gfp, 1); // is the encoded data on the original media? lame_set_error_protection(gfp, 0);// add 2 byte CRC protection to each frame? - lame_set_padding_type(gfp, PAD_NO); // PAD_NO, PAD_ALL, PAD_ADJUST, PAD_MAX_INDICATOR + // lame_set_padding_type(gfp, PAD_NO); // PAD_NO, PAD_ALL, PAD_ADJUST, PAD_MAX_INDICATOR // 0 = do not pad frames // 1 = always pad frames // 2 = adjust padding to satisfy bit rate @@ -115,7 +120,7 @@ Frame *LibLAMEWrapper::close(Frame *oldframe) int flush; - flush = lame_encode_finish(gfp, frame->data + offset, 7200); + flush = 0;//lame_encode_finish(gfp, frame->data + offset, 7200); frame->size = offset + flush; |