Commit 17aa2b4e authored by Christophe Massiot's avatar Christophe Massiot

* ALL: We are now using libtwolame instead of libtoolame. The reason is that

  twolame is thread-safe and maintained. Update your batch files for
  --enable-twolame instead of --enable-toolame. See http://twolame.sf.net
  for more information.
parent 0020f822
...@@ -453,7 +453,7 @@ AC_CHECK_LIB(m,cos,[ ...@@ -453,7 +453,7 @@ AC_CHECK_LIB(m,cos,[
VLC_ADD_LDFLAGS([adjust distort a52tofloat32 dtstofloat32 x264 goom],[-lm]) VLC_ADD_LDFLAGS([adjust distort a52tofloat32 dtstofloat32 x264 goom],[-lm])
]) ])
AC_CHECK_LIB(m,pow,[ AC_CHECK_LIB(m,pow,[
VLC_ADD_LDFLAGS([ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad toolame equalizer vlc freetype],[-lm]) VLC_ADD_LDFLAGS([ffmpeg ffmpegaltivec stream_out_transrate i420_rgb faad twolame equalizer vlc freetype],[-lm])
]) ])
AC_CHECK_LIB(m,sqrt,[ AC_CHECK_LIB(m,sqrt,[
VLC_ADD_LDFLAGS([headphone_channel_mixer normvol speex],[-lm]) VLC_ADD_LDFLAGS([headphone_channel_mixer normvol speex],[-lm])
...@@ -2211,46 +2211,48 @@ then ...@@ -2211,46 +2211,48 @@ then
fi fi
dnl dnl
dnl toolame encoder plugin dnl twolame encoder plugin
dnl dnl
AC_ARG_ENABLE(toolame, AC_ARG_ENABLE(twolame,
[ --enable-toolame toolame codec (default disabled)]) [ --enable-twolame twolame codec (default disabled)])
if test "${enable_toolame}" = "yes" if test "${enable_twolame}" = "yes"
then then
AC_ARG_WITH(toolame-tree, AC_ARG_WITH(twolame-tree,
[ --with-toolame-tree=PATH toolame tree for static linking]) [ --with-twolame-tree=PATH twolame tree for static linking])
if test -n "${with_toolame_tree}" if test -n "${with_twolame_tree}"
then then
AC_MSG_CHECKING(for libtoolame.a in ${with_toolame_tree}) AC_MSG_CHECKING(for libtwolame.a in ${with_twolame_tree})
real_toolame_tree="`cd ${with_toolame_tree} 2>/dev/null && pwd`" real_twolame_tree="`cd ${with_twolame_tree} 2>/dev/null && pwd`"
if test -z "${real_toolame_tree}" if test -z "${real_twolame_tree}"
then then
dnl The given directory can't be found dnl The given directory can't be found
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
AC_MSG_ERROR([cannot cd to ${with_toolame_tree}]) AC_MSG_ERROR([cannot cd to ${with_twolame_tree}])
fi fi
if test -f "${real_toolame_tree}/libtoolame/libtoolame.a" if test -f "${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a"
then then
dnl Use a custom toolame dnl Use a custom twolame
AC_MSG_RESULT(${real_toolame_tree}/libtoolame/libtoolame.a) AC_MSG_RESULT(${real_twolame_tree}/src/libtwolame/.libs/libtwolame.a)
VLC_ADD_BUILTINS([toolame]) VLC_ADD_BUILTINS([twolame])
VLC_ADD_LDFLAGS([toolame],[${real_toolame_tree}/libtoolame/libtoolame.a]) VLC_ADD_LDFLAGS([twolame],[${real_twolame_tree}/src/libtwolame/.libs/libtw
VLC_ADD_CPPFLAGS([toolame],[-I${real_toolame_tree}/libtoolame]) olame.a])
VLC_ADD_CPPFLAGS([twolame],[-I${real_twolame_tree}/src/libtwolame])
else else
dnl The given libtoolame wasn't built dnl The given libtwolame wasn't built
AC_MSG_RESULT(no) AC_MSG_RESULT(no)
AC_MSG_ERROR([cannot find ${real_toolame_tree}/libtoolame/libtoolame.a, make sure you compiled libtoolame in ${with_toolame_tree}]) AC_MSG_ERROR([cannot find ${real_twolame_tree}/src/libtwolame/.libs/libtwo
lame.a, make sure you compiled libtwolame in ${with_twolame_tree}])
fi fi
else else
CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_toolame}" CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_twolame}"
LDFLAGS="${LDFLAGS_save} ${LDFLAGS_toolame}" LDFLAGS="${LDFLAGS_save} ${LDFLAGS_twolame}"
AC_CHECK_HEADERS(toolame.h, , AC_CHECK_HEADERS(twolame.h, ,
[ AC_MSG_ERROR([Cannot find development header for libtoolame...]) ]) [ AC_MSG_ERROR([Cannot find development header for libtwolame...]) ])
AC_CHECK_LIB(toolame, toolame_init, [ AC_CHECK_LIB(twolame, twolame_init, [
VLC_ADD_PLUGINS([toolame]) VLC_ADD_PLUGINS([twolame])
VLC_ADD_LDFLAGS([toolame],[-ltoolame]) ], VLC_ADD_LDFLAGS([twolame],[-ltwolame]) ],
[ AC_MSG_ERROR([Cannot find libtoolame library...]) ]) [ AC_MSG_ERROR([Cannot find libtwolame library...]) ])
LDFLAGS="${LDFLAGS_save}" LDFLAGS="${LDFLAGS_save}"
CPPFLAGS="${CPPFLAGS_save}" CPPFLAGS="${CPPFLAGS_save}"
fi fi
fi fi
......
...@@ -1006,23 +1006,23 @@ CLEAN_PKG += mash-code ...@@ -1006,23 +1006,23 @@ CLEAN_PKG += mash-code
DISTCLEAN_PKG += mash-src-$(MASH_VERSION).tar.gz DISTCLEAN_PKG += mash-src-$(MASH_VERSION).tar.gz
# *************************************************************************** # ***************************************************************************
# toolame # twolame
# *************************************************************************** # ***************************************************************************
toolame-$(TOOLAME_VERSION).tar.bz2: twolame-$(TWOLAME_VERSION).tar.gz:
$(WGET) $(TOOLAME_URL) $(WGET) $(TWOLAME_URL)
toolame: toolame-$(TOOLAME_VERSION).tar.bz2 twolame: twolame-$(TWOLAME_VERSION).tar.gz
$(EXTRACT_BZ2) $(EXTRACT_GZ)
.toolame: toolame .twolame: twolame
(cd toolame; ./configure --prefix=$(PREFIX) && make && make install) (cd twolame; ./configure --prefix=$(PREFIX) && make && make install)
$(INSTALL_NAME) $(INSTALL_NAME)
touch $@ touch $@
CLEAN_FILE += .toolame CLEAN_FILE += .twolame
CLEAN_PKG += toolame CLEAN_PKG += twolame
DISTCLEAN_PKG += toolame-$(TOOLAME_VERSION).tar.bz2 DISTCLEAN_PKG += twolame-$(TWOLAME_VERSION).tar.bz2
# *************************************************************************** # ***************************************************************************
# libpng # libpng
......
...@@ -107,8 +107,6 @@ VCDIMAGER_VERSION=0.7.21 ...@@ -107,8 +107,6 @@ VCDIMAGER_VERSION=0.7.21
VCDIMAGER_URL=$(GNU)/vcdimager/vcdimager-$(VCDIMAGER_VERSION).tar.gz VCDIMAGER_URL=$(GNU)/vcdimager/vcdimager-$(VCDIMAGER_VERSION).tar.gz
CDIO_VERSION=0.72 CDIO_VERSION=0.72
CDIO_URL=$(GNU)/libcdio/libcdio-$(CDIO_VERSION).tar.gz CDIO_URL=$(GNU)/libcdio/libcdio-$(CDIO_VERSION).tar.gz
TOOLAME_VERSION=02m-beta8
TOOLAME_URL=$(VIDEOLAN)/testing/contrib/toolame-$(TOOLAME_VERSION).tar.bz2
PNG_VERSION=1.2.5 PNG_VERSION=1.2.5
PNG_URL=$(VIDEOLAN)/testing/contrib/libpng-$(PNG_VERSION).tar.bz2 PNG_URL=$(VIDEOLAN)/testing/contrib/libpng-$(PNG_VERSION).tar.bz2
GPGERROR_VERSION=1.0 GPGERROR_VERSION=1.0
...@@ -125,4 +123,5 @@ LIBIDL_VERSION=0.6.8 ...@@ -125,4 +123,5 @@ LIBIDL_VERSION=0.6.8
LIBIDL_URL=http://andrewtv.org/libIDL/libIDL-$(LIBIDL_VERSION).tar.gz LIBIDL_URL=http://andrewtv.org/libIDL/libIDL-$(LIBIDL_VERSION).tar.gz
MOZILLA_VERSION=1.7.5 MOZILLA_VERSION=1.7.5
MOZILLA_URL=http://ftp.mozilla.org/pub/mozilla.org/mozilla/releases/mozilla$(MOZILLA_VERSION)/source/mozilla-source-$(MOZILLA_VERSION).tar.bz2 MOZILLA_URL=http://ftp.mozilla.org/pub/mozilla.org/mozilla/releases/mozilla$(MOZILLA_VERSION)/source/mozilla-source-$(MOZILLA_VERSION).tar.bz2
TWOLAME_VERSION=0.3.2
TWOLAME_URL=$(SF)/twolame/twolame-$(TWOLAME_VERSION).tar.gz
...@@ -20,7 +20,7 @@ SOURCES_faad = faad.c ...@@ -20,7 +20,7 @@ SOURCES_faad = faad.c
SOURCES_dvbsub = dvbsub.c SOURCES_dvbsub = dvbsub.c
SOURCES_mash = mash.cpp SOURCES_mash = mash.cpp
SOURCES_x264 = x264.c SOURCES_x264 = x264.c
SOURCES_toolame = toolame.c SOURCES_twolame = twolame.c
SOURCES_dirac = dirac.c SOURCES_dirac = dirac.c
SOURCES_png = png.c SOURCES_png = png.c
SOURCES_svcdsub = svcdsub.c SOURCES_svcdsub = svcdsub.c
......
/***************************************************************************** /*****************************************************************************
* toolame.c: libtoolame encoder (MPEG-1/2 layer II) module * twolame.c: libtwolame encoder (MPEG-1/2 layer II) module
* (using libtoolame from http://users.tpg.com.au/adslblvi/) * (using libtwolame from http://users.tpg.com.au/adslblvi/)
***************************************************************************** *****************************************************************************
* Copyright (C) 2004 VideoLAN * Copyright (C) 2004-2005 VideoLAN
* $Id$ * $Id$
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
#include <vlc/sout.h> #include <vlc/sout.h>
#include <vlc/aout.h> #include <vlc/aout.h>
#include <toolame.h> #include <twolame.h>
#define MPEG_FRAME_SIZE 1152 #define MPEG_FRAME_SIZE 1152
#define MAX_CODED_FRAME_SIZE 1792 #define MAX_CODED_FRAME_SIZE 1792
...@@ -45,7 +45,7 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * ); ...@@ -45,7 +45,7 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * );
/***************************************************************************** /*****************************************************************************
* Module descriptor * Module descriptor
*****************************************************************************/ *****************************************************************************/
#define ENC_CFG_PREFIX "sout-toolame-" #define ENC_CFG_PREFIX "sout-twolame-"
#define ENC_QUALITY_TEXT N_("Encoding quality") #define ENC_QUALITY_TEXT N_("Encoding quality")
#define ENC_QUALITY_LONGTEXT N_( \ #define ENC_QUALITY_LONGTEXT N_( \
...@@ -58,10 +58,13 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * ); ...@@ -58,10 +58,13 @@ static block_t *Encode ( encoder_t *, aout_buffer_t * );
#define ENC_VBR_TEXT N_("VBR mode") #define ENC_VBR_TEXT N_("VBR mode")
#define ENC_VBR_LONGTEXT N_( \ #define ENC_VBR_LONGTEXT N_( \
"By default the encoding is CBR." ) "By default the encoding is CBR." )
#define ENC_PSY_TEXT N_("Psycho-acoustic model")
#define ENC_PSY_LONGTEXT N_( \
"Integer from -1 (no model) to 4." )
vlc_module_begin(); vlc_module_begin();
set_shortname( "toolame"); set_shortname( "twolame");
set_description( _("Libtoolame audio encoder") ); set_description( _("Libtwolame audio encoder") );
set_capability( "encoder", 50 ); set_capability( "encoder", 50 );
set_callbacks( OpenEncoder, CloseEncoder ); set_callbacks( OpenEncoder, CloseEncoder );
set_category( CAT_INPUT ); set_category( CAT_INPUT );
...@@ -73,29 +76,30 @@ vlc_module_begin(); ...@@ -73,29 +76,30 @@ vlc_module_begin();
ENC_MODE_LONGTEXT, VLC_FALSE ); ENC_MODE_LONGTEXT, VLC_FALSE );
add_bool( ENC_CFG_PREFIX "vbr", 0, NULL, ENC_VBR_TEXT, add_bool( ENC_CFG_PREFIX "vbr", 0, NULL, ENC_VBR_TEXT,
ENC_VBR_LONGTEXT, VLC_FALSE ); ENC_VBR_LONGTEXT, VLC_FALSE );
add_integer( ENC_CFG_PREFIX "psy", 3, NULL, ENC_PSY_TEXT,
ENC_PSY_LONGTEXT, VLC_FALSE );
vlc_module_end(); vlc_module_end();
static const char *ppsz_enc_options[] = { static const char *ppsz_enc_options[] = {
"quality", "mode", "vbr", NULL "quality", "mode", "vbr", "psy", NULL
}; };
/***************************************************************************** /*****************************************************************************
* encoder_sys_t : toolame encoder descriptor * encoder_sys_t : twolame encoder descriptor
*****************************************************************************/ *****************************************************************************/
struct encoder_sys_t struct encoder_sys_t
{ {
/* /*
* Input properties * Input properties
*/ */
int16_t p_left[MPEG_FRAME_SIZE]; int16_t p_buffer[MPEG_FRAME_SIZE * 2];
int16_t p_right[MPEG_FRAME_SIZE];
int i_nb_samples; int i_nb_samples;
audio_date_t pts; mtime_t i_pts;
/* /*
* libtoolame properties * libtwolame properties
*/ */
toolame_options *p_toolame; twolame_options *p_twolame;
unsigned char p_out_buffer[MAX_CODED_FRAME_SIZE]; unsigned char p_out_buffer[MAX_CODED_FRAME_SIZE];
}; };
...@@ -136,57 +140,62 @@ static int OpenEncoder( vlc_object_t *p_this ) ...@@ -136,57 +140,62 @@ static int OpenEncoder( vlc_object_t *p_this )
sout_CfgParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg ); sout_CfgParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
p_sys->p_toolame = toolame_init(); p_sys->p_twolame = twolame_init();
/* Set options */ /* Set options */
toolame_setSampleFreq( p_sys->p_toolame, p_enc->fmt_out.audio.i_rate ); twolame_set_in_samplerate( p_sys->p_twolame, p_enc->fmt_out.audio.i_rate );
twolame_set_out_samplerate( p_sys->p_twolame, p_enc->fmt_out.audio.i_rate );
var_Get( p_enc, ENC_CFG_PREFIX "vbr", &val ); var_Get( p_enc, ENC_CFG_PREFIX "vbr", &val );
if ( val.b_bool ) if ( val.b_bool )
{ {
FLOAT i_quality; float i_quality;
var_Get( p_enc, ENC_CFG_PREFIX "quality", &val ); var_Get( p_enc, ENC_CFG_PREFIX "quality", &val );
i_quality = val.i_int; i_quality = val.i_int;
if ( i_quality > 50.0 ) i_quality = 50.0; if ( i_quality > 50.0 ) i_quality = 50.0;
if ( i_quality < 0.0 ) i_quality = 0.0; if ( i_quality < 0.0 ) i_quality = 0.0;
toolame_setVBR( p_sys->p_toolame, 1 ); twolame_set_VBR( p_sys->p_twolame, 1 );
toolame_setVBRLevel( p_sys->p_toolame, i_quality ); twolame_set_VBR_q( p_sys->p_twolame, i_quality );
} }
else else
{ {
toolame_setBitrate( p_sys->p_toolame, p_enc->fmt_out.i_bitrate / 1000 ); twolame_set_bitrate( p_sys->p_twolame, p_enc->fmt_out.i_bitrate / 1000 );
} }
if ( p_enc->fmt_in.audio.i_channels == 1 ) if ( p_enc->fmt_in.audio.i_channels == 1 )
{ {
toolame_setMode( p_sys->p_toolame, MPG_MD_MONO ); twolame_set_num_channels( p_sys->p_twolame, 1 );
twolame_set_mode( p_sys->p_twolame, TWOLAME_MONO );
} }
else else
{ {
twolame_set_num_channels( p_sys->p_twolame, 2 );
var_Get( p_enc, ENC_CFG_PREFIX "mode", &val ); var_Get( p_enc, ENC_CFG_PREFIX "mode", &val );
switch ( val.i_int ) switch ( val.i_int )
{ {
case 1: case 1:
toolame_setMode( p_sys->p_toolame, MPG_MD_DUAL_CHANNEL ); twolame_set_mode( p_sys->p_twolame, TWOLAME_DUAL_CHANNEL );
break; break;
case 2: case 2:
toolame_setMode( p_sys->p_toolame, MPG_MD_JOINT_STEREO ); twolame_set_mode( p_sys->p_twolame, TWOLAME_JOINT_STEREO );
break; break;
case 0: case 0:
default: default:
toolame_setMode( p_sys->p_toolame, MPG_MD_STEREO ); twolame_set_mode( p_sys->p_twolame, TWOLAME_STEREO );
break; break;
} }
} }
if ( toolame_init_params( p_sys->p_toolame ) ) var_Get( p_enc, ENC_CFG_PREFIX "psy", &val );
twolame_set_psymodel( p_sys->p_twolame, val.i_int );
if ( twolame_init_params( p_sys->p_twolame ) )
{ {
msg_Err( p_enc, "toolame initialization failed" ); msg_Err( p_enc, "twolame initialization failed" );
return -VLC_EGENERIC; return -VLC_EGENERIC;
} }
p_sys->i_nb_samples = 0; p_sys->i_nb_samples = 0;
aout_DateInit( &p_sys->pts, p_enc->fmt_out.audio.i_rate );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
...@@ -196,17 +205,14 @@ static int OpenEncoder( vlc_object_t *p_this ) ...@@ -196,17 +205,14 @@ static int OpenEncoder( vlc_object_t *p_this )
**************************************************************************** ****************************************************************************
* This function spits out MPEG packets. * This function spits out MPEG packets.
****************************************************************************/ ****************************************************************************/
static void Uninterleave( encoder_t *p_enc, int16_t *p_in, int i_nb_samples ) static void Bufferize( encoder_t *p_enc, int16_t *p_in, int i_nb_samples )
{ {
int16_t *p_left = p_enc->p_sys->p_left + p_enc->p_sys->i_nb_samples; int16_t *p_buffer = p_enc->p_sys->p_buffer
int16_t *p_right = p_enc->p_sys->p_right + p_enc->p_sys->i_nb_samples; + (p_enc->p_sys->i_nb_samples
* p_enc->fmt_in.audio.i_channels);
while ( i_nb_samples > 0 ) memcpy( p_buffer, p_in, i_nb_samples * p_enc->fmt_in.audio.i_channels
{ * sizeof(int16_t) );
*p_left++ = *p_in++;
*p_right++ = *p_in++;
i_nb_samples--;
}
} }
static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf ) static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
...@@ -215,44 +221,37 @@ static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf ) ...@@ -215,44 +221,37 @@ static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
int16_t *p_buffer = (int16_t *)p_aout_buf->p_buffer; int16_t *p_buffer = (int16_t *)p_aout_buf->p_buffer;
int i_nb_samples = p_aout_buf->i_nb_samples; int i_nb_samples = p_aout_buf->i_nb_samples;
block_t *p_chain = NULL; block_t *p_chain = NULL;
mtime_t i_computed_pts = p_aout_buf->start_date -
(mtime_t)1000000 * (mtime_t)p_sys->i_nb_samples /
(mtime_t)p_enc->fmt_in.audio.i_rate;
if ( aout_DateGet( &p_sys->pts ) - i_computed_pts > 10000 || p_sys->i_pts = p_aout_buf->start_date -
aout_DateGet( &p_sys->pts ) - i_computed_pts < -10000 ) (mtime_t)1000000 * (mtime_t)p_sys->i_nb_samples /
{ (mtime_t)p_enc->fmt_out.audio.i_rate;
msg_Dbg( p_enc, "resetting audio date" );
aout_DateSet( &p_sys->pts, i_computed_pts );
}
while ( p_sys->i_nb_samples + i_nb_samples >= MPEG_FRAME_SIZE ) while ( p_sys->i_nb_samples + i_nb_samples >= MPEG_FRAME_SIZE )
{ {
int i_used; int i_used;
block_t *p_block; block_t *p_block;
Uninterleave( p_enc, p_buffer, MPEG_FRAME_SIZE - p_sys->i_nb_samples ); Bufferize( p_enc, p_buffer, MPEG_FRAME_SIZE - p_sys->i_nb_samples );
i_nb_samples -= MPEG_FRAME_SIZE - p_sys->i_nb_samples; i_nb_samples -= MPEG_FRAME_SIZE - p_sys->i_nb_samples;
p_buffer += (MPEG_FRAME_SIZE - p_sys->i_nb_samples) * 2; p_buffer += (MPEG_FRAME_SIZE - p_sys->i_nb_samples) * 2;
toolame_encode_buffer( p_sys->p_toolame, p_sys->p_left, i_used = twolame_encode_buffer_interleaved( p_sys->p_twolame,
p_sys->p_right, MPEG_FRAME_SIZE, p_sys->p_buffer, MPEG_FRAME_SIZE,
p_sys->p_out_buffer, MAX_CODED_FRAME_SIZE, p_sys->p_out_buffer, MAX_CODED_FRAME_SIZE );
&i_used );
p_sys->i_nb_samples = 0; p_sys->i_nb_samples = 0;
p_block = block_New( p_enc, i_used ); p_block = block_New( p_enc, i_used );
p_enc->p_vlc->pf_memcpy( p_block->p_buffer, p_sys->p_out_buffer, p_enc->p_vlc->pf_memcpy( p_block->p_buffer, p_sys->p_out_buffer,
i_used ); i_used );
p_block->i_length = (mtime_t)1000000 * p_block->i_length = (mtime_t)1000000 *
(mtime_t)MPEG_FRAME_SIZE / (mtime_t)p_enc->fmt_in.audio.i_rate; (mtime_t)MPEG_FRAME_SIZE / (mtime_t)p_enc->fmt_out.audio.i_rate;
p_block->i_dts = p_block->i_pts = aout_DateGet( &p_sys->pts ); p_block->i_dts = p_block->i_pts = p_sys->i_pts;
aout_DateIncrement( &p_sys->pts, MPEG_FRAME_SIZE ); p_sys->i_pts += p_block->i_length;
block_ChainAppend( &p_chain, p_block ); block_ChainAppend( &p_chain, p_block );
} }
if ( i_nb_samples ) if ( i_nb_samples )
{ {
Uninterleave( p_enc, p_buffer, i_nb_samples ); Bufferize( p_enc, p_buffer, i_nb_samples );
p_sys->i_nb_samples += i_nb_samples; p_sys->i_nb_samples += i_nb_samples;
} }
...@@ -260,14 +259,14 @@ static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf ) ...@@ -260,14 +259,14 @@ static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
} }
/***************************************************************************** /*****************************************************************************
* CloseEncoder: toolame encoder destruction * CloseEncoder: twolame encoder destruction
*****************************************************************************/ *****************************************************************************/
static void CloseEncoder( vlc_object_t *p_this ) static void CloseEncoder( vlc_object_t *p_this )
{ {
encoder_t *p_enc = (encoder_t *)p_this; encoder_t *p_enc = (encoder_t *)p_this;
encoder_sys_t *p_sys = p_enc->p_sys; encoder_sys_t *p_sys = p_enc->p_sys;
toolame_deinit( p_sys->p_toolame ); twolame_close( &p_sys->p_twolame );
free( p_sys ); free( p_sys );
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment