2005-04-22 06:59:59 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <inttypes.h>
|
2005-04-22 13:53:56 +00:00
|
|
|
#include <unistd.h>
|
2005-04-22 17:53:31 +00:00
|
|
|
#include <sys/types.h>
|
2005-04-22 06:59:59 +00:00
|
|
|
#include <math.h>
|
2007-06-24 17:39:54 +00:00
|
|
|
#include "config.h"
|
2007-03-15 17:51:32 +00:00
|
|
|
#include "libmpdemux/aviheader.h"
|
|
|
|
#include "libmpdemux/ms_hdr.h"
|
2007-03-15 17:30:55 +00:00
|
|
|
#include "stream/stream.h"
|
2007-03-15 17:51:32 +00:00
|
|
|
#include "libmpdemux/muxer.h"
|
2005-04-22 06:59:59 +00:00
|
|
|
#include "ae.h"
|
|
|
|
|
2005-09-28 20:15:30 +00:00
|
|
|
#include "ae_pcm.h"
|
|
|
|
|
2008-08-02 16:30:32 +00:00
|
|
|
#ifdef CONFIG_TOOLAME
|
2005-04-22 06:59:59 +00:00
|
|
|
#include "ae_toolame.h"
|
|
|
|
#endif
|
|
|
|
|
2008-08-02 16:30:32 +00:00
|
|
|
#ifdef CONFIG_MP3LAME
|
2005-04-22 06:59:59 +00:00
|
|
|
#include "ae_lame.h"
|
|
|
|
#endif
|
|
|
|
|
2008-07-30 12:01:30 +00:00
|
|
|
#ifdef CONFIG_LIBAVCODEC
|
2005-04-22 06:59:59 +00:00
|
|
|
#include "ae_lavc.h"
|
|
|
|
#endif
|
|
|
|
|
2008-08-02 16:30:32 +00:00
|
|
|
#ifdef CONFIG_FAAC
|
2005-04-25 07:07:57 +00:00
|
|
|
#include "ae_faac.h"
|
|
|
|
#endif
|
|
|
|
|
2008-08-02 16:30:32 +00:00
|
|
|
#ifdef CONFIG_TWOLAME
|
2005-05-07 14:50:14 +00:00
|
|
|
#include "ae_twolame.h"
|
|
|
|
#endif
|
|
|
|
|
2005-04-22 06:59:59 +00:00
|
|
|
audio_encoder_t *new_audio_encoder(muxer_stream_t *stream, audio_encoding_params_t *params)
|
|
|
|
{
|
|
|
|
int ris;
|
2005-04-22 18:38:47 +00:00
|
|
|
audio_encoder_t *encoder;
|
2005-04-22 06:59:59 +00:00
|
|
|
if(! params)
|
|
|
|
return NULL;
|
|
|
|
|
2005-04-22 18:38:47 +00:00
|
|
|
encoder = (audio_encoder_t *) calloc(1, sizeof(audio_encoder_t));
|
2005-04-22 06:59:59 +00:00
|
|
|
memcpy(&encoder->params, params, sizeof(audio_encoding_params_t));
|
|
|
|
encoder->stream = stream;
|
|
|
|
|
|
|
|
switch(stream->codec)
|
|
|
|
{
|
|
|
|
case ACODEC_PCM:
|
|
|
|
ris = mpae_init_pcm(encoder);
|
|
|
|
break;
|
2008-08-02 16:30:32 +00:00
|
|
|
#ifdef CONFIG_TOOLAME
|
2005-04-22 06:59:59 +00:00
|
|
|
case ACODEC_TOOLAME:
|
|
|
|
ris = mpae_init_toolame(encoder);
|
|
|
|
break;
|
|
|
|
#endif
|
2008-07-30 12:01:30 +00:00
|
|
|
#ifdef CONFIG_LIBAVCODEC
|
2005-04-22 06:59:59 +00:00
|
|
|
case ACODEC_LAVC:
|
|
|
|
ris = mpae_init_lavc(encoder);
|
|
|
|
break;
|
|
|
|
#endif
|
2008-08-02 16:30:32 +00:00
|
|
|
#ifdef CONFIG_MP3LAME
|
2005-04-22 06:59:59 +00:00
|
|
|
case ACODEC_VBRMP3:
|
|
|
|
ris = mpae_init_lame(encoder);
|
|
|
|
break;
|
2005-04-25 07:07:57 +00:00
|
|
|
#endif
|
2008-08-02 16:30:32 +00:00
|
|
|
#ifdef CONFIG_FAAC
|
2005-04-25 07:07:57 +00:00
|
|
|
case ACODEC_FAAC:
|
|
|
|
ris = mpae_init_faac(encoder);
|
|
|
|
break;
|
2005-05-07 14:50:14 +00:00
|
|
|
#endif
|
2008-08-02 16:30:32 +00:00
|
|
|
#ifdef CONFIG_TWOLAME
|
2005-05-07 14:50:14 +00:00
|
|
|
case ACODEC_TWOLAME:
|
|
|
|
ris = mpae_init_twolame(encoder);
|
|
|
|
break;
|
2005-04-22 06:59:59 +00:00
|
|
|
#endif
|
2006-03-08 15:49:46 +00:00
|
|
|
default:
|
|
|
|
ris = 0;
|
|
|
|
break;
|
2005-04-22 06:59:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(! ris)
|
|
|
|
{
|
|
|
|
free(encoder);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
encoder->bind(encoder, stream);
|
2005-12-07 10:07:27 +00:00
|
|
|
encoder->decode_buffer = malloc(encoder->decode_buffer_size);
|
2005-04-22 06:59:59 +00:00
|
|
|
if(! encoder->decode_buffer)
|
|
|
|
{
|
|
|
|
free(encoder);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
encoder->codec = stream->codec;
|
|
|
|
return encoder;
|
|
|
|
}
|
|
|
|
|
|
|
|
|