You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
236 lines
5.0 KiB
236 lines
5.0 KiB
/*
|
|
* export_toolame.c
|
|
*
|
|
* Andreas Neukoetter <anti@webhome.de> - April 2002
|
|
* sox extension: Christian Vogelgsang <Vogelgsang@informatik.uni-erlangen.de>
|
|
*
|
|
* based on export mp2enc.c
|
|
*
|
|
* This file is part of transcode, a video stream processing tool
|
|
*
|
|
* transcode is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* transcode is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with GNU Make; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*
|
|
*/
|
|
|
|
#define MOD_NAME "export_twolame.so"
|
|
#define MOD_VERSION "v1.0.6 (2004-01-26)"
|
|
#define MOD_CODEC "(audio) MPEG 1/2"
|
|
|
|
#include "transcode.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
|
|
static int verbose_flag = TC_QUIET;
|
|
static int capability_flag = TC_CAP_PCM;
|
|
|
|
#define MOD_PRE twolame
|
|
#include "export_def.h"
|
|
|
|
static FILE* pFile = NULL;
|
|
|
|
/* ------------------------------------------------------------
|
|
*
|
|
* Pipe write helper function
|
|
*
|
|
* ------------------------------------------------------------*/
|
|
|
|
static int p_write (char *buf, size_t len)
|
|
{
|
|
size_t n = 0;
|
|
size_t r = 0;
|
|
int fd = fileno (pFile);
|
|
|
|
while (r < len)
|
|
{
|
|
if ((n = write (fd, buf + r, len - r)) < 0)
|
|
return n;
|
|
|
|
r += n;
|
|
}
|
|
|
|
return r;
|
|
}
|
|
|
|
/* ------------------------------------------------------------
|
|
*
|
|
* open outputfile
|
|
*
|
|
* ------------------------------------------------------------*/
|
|
|
|
MOD_open
|
|
{
|
|
if (param->flag == TC_AUDIO) {
|
|
char buf [PATH_MAX];
|
|
int ifreq,ofreq,orate;
|
|
int verb;
|
|
//int ofreq_int;
|
|
//int ofreq_dec;
|
|
int ochan;
|
|
char chan;
|
|
char *ptr;
|
|
|
|
/* check for twolame */
|
|
if (tc_test_program("twolame") != 0) return (TC_EXPORT_ERROR);
|
|
|
|
/* verbose? */
|
|
verb = (verbose & TC_DEBUG) ? 2:0;
|
|
|
|
/* fetch audio parameter */
|
|
ofreq = vob->mp3frequency;
|
|
ifreq = vob->a_rate;
|
|
orate = vob->mp3bitrate;
|
|
ochan = vob->dm_chan;
|
|
chan = (ochan==2) ? (vob->mp3mode==1 ? 's' : 'j') : 'm';
|
|
|
|
/* default out freq */
|
|
if(ofreq==0)
|
|
ofreq = ifreq;
|
|
|
|
/* need conversion? */
|
|
if(ofreq!=ifreq) {
|
|
/* check for sox */
|
|
if (tc_test_program("sox") != 0) return (TC_EXPORT_ERROR);
|
|
|
|
/* add sox for conversion */
|
|
tc_snprintf(buf, sizeof(buf), "sox %s -r %d -c %d -t raw - -r %d"
|
|
" -t raw - polyphase 2>/dev/null | ",
|
|
(vob->dm_bits==16)?"-w -s":"-b -u",
|
|
ifreq, ochan, ofreq);
|
|
ptr = buf + strlen(buf);
|
|
} else {
|
|
ptr = buf;
|
|
}
|
|
|
|
/* convert output frequency to fixed point */
|
|
/* why that?
|
|
ofreq_int = ofreq/1000.0;
|
|
ofreq_dec = ofreq-ofreq_int*1000;
|
|
*/
|
|
|
|
/* twolame command line */
|
|
/* ptr is a pointer into buf */
|
|
tc_snprintf(ptr, sizeof(buf) - (ptr-buf),
|
|
"twolame -s %0.3f -b %d -m %c - \"%s\" 2>/dev/null %s",
|
|
(double)ofreq/1000.0, orate, chan, vob->audio_out_file,
|
|
(vob->ex_a_string?vob->ex_a_string:""));
|
|
|
|
tc_log_info (MOD_NAME, "%s", buf);
|
|
|
|
if ((pFile = popen (buf, "w")) == NULL)
|
|
return(TC_EXPORT_ERROR);
|
|
|
|
return(0);
|
|
}
|
|
|
|
if (param->flag == TC_VIDEO)
|
|
return(0);
|
|
|
|
// invalid flag
|
|
return(TC_EXPORT_ERROR);
|
|
}
|
|
|
|
|
|
/* ------------------------------------------------------------
|
|
*
|
|
* init codec
|
|
*
|
|
* ------------------------------------------------------------*/
|
|
|
|
MOD_init
|
|
{
|
|
if(param->flag == TC_AUDIO)
|
|
{
|
|
return(0);
|
|
}
|
|
|
|
if (param->flag == TC_VIDEO)
|
|
return(0);
|
|
|
|
// invalid flag
|
|
return(TC_EXPORT_ERROR);
|
|
}
|
|
|
|
/* ------------------------------------------------------------
|
|
*
|
|
* encode and export frame
|
|
*
|
|
* ------------------------------------------------------------*/
|
|
|
|
|
|
MOD_encode
|
|
{
|
|
if(param->flag == TC_AUDIO)
|
|
{
|
|
if (p_write (param->buffer, param->size) != param->size)
|
|
{
|
|
tc_log_perror(MOD_NAME, "write audio frame");
|
|
return(TC_EXPORT_ERROR);
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
if (param->flag == TC_VIDEO)
|
|
return(0);
|
|
|
|
// invalid flag
|
|
return(TC_EXPORT_ERROR);
|
|
}
|
|
|
|
/* ------------------------------------------------------------
|
|
*
|
|
* stop encoder
|
|
*
|
|
* ------------------------------------------------------------*/
|
|
|
|
MOD_stop
|
|
{
|
|
if (param->flag == TC_VIDEO)
|
|
return (0);
|
|
|
|
if (param->flag == TC_AUDIO)
|
|
return (0);
|
|
|
|
return(TC_EXPORT_ERROR);
|
|
}
|
|
|
|
/* ------------------------------------------------------------
|
|
*
|
|
* close codec
|
|
*
|
|
* ------------------------------------------------------------*/
|
|
|
|
MOD_close
|
|
{
|
|
if (param->flag == TC_VIDEO)
|
|
return (0);
|
|
|
|
if (param->flag == TC_AUDIO)
|
|
{
|
|
if (pFile)
|
|
pclose (pFile);
|
|
|
|
pFile = NULL;
|
|
|
|
return(0);
|
|
}
|
|
|
|
return (TC_EXPORT_ERROR);
|
|
}
|
|
|