1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
/*
* decode_mp3.c
*
* Copyright (C) Thomas Oestreich - June 2001
*
* 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.
*
*/
#include <stdint.h>
#include "transcode.h"
#include "libtc/libtc.h"
#include "tcinfo.h"
#include "ioaux.h"
#include "tc.h"
#ifdef HAVE_LAME
#include "mpg123.h"
#define MP3_PCM_SIZE 1152
static uint16_t buffer[MP3_PCM_SIZE<<2];
static uint16_t ch1[MP3_PCM_SIZE], ch2[MP3_PCM_SIZE];
#endif // HAVE_LAME
#define MP3_AUDIO_ID 0x55
#define MP2_AUDIO_ID 0x50
/*
* About MP2/3 handling differences:
* It is possible that lame_decode_initfile() when looking for an MP3 syncbyte
* finds an invalid one (esp. in broken mp3 streams). Thats why we use the
* format argument to decide which syncword detection is to be done. The
* syncword detection for mp2 also finds mp3 sync bytes but NOT the other way round.
*/
/* ------------------------------------------------------------
*
* decoder thread
*
* ------------------------------------------------------------*/
static void decode_mpaudio(decode_t *decode, int format)
{
#ifdef HAVE_LAME
int samples = 0, j, bytes, channels = 0, i, padding = 0;
int verbose;
mp3data_struct *mp3data = NULL;
FILE *in_file = NULL;
if (format != MP2_AUDIO_ID && format != MP3_AUDIO_ID) {
tc_log_error(__FILE__, "wrong mpeg audio format: 0x%x", format);
exit(1);
}
verbose = decode->verbose;
// init decoder
mp3data = tc_zalloc(sizeof(mp3data_struct));
if (mp3data == NULL) {
tc_log_error(__FILE__, "out of memory");
exit(1);
}
if (lame_decode_init() < 0) {
tc_log_error(__FILE__, "failed to init decoder");
exit(1);
}
in_file = fdopen(decode->fd_in, "r");
if (format == MP3_AUDIO_ID) {
int c = 0;
/* padding detection */
while (!(c = fgetc(in_file)))
padding++;
if (c != EOF)
ungetc(c, in_file);
}
samples = lame_decode_initfile(in_file, mp3data, format);
if (verbose) {
tc_log_info(__FILE__, "channels=%d, samplerate=%d Hz, bitrate=%d kbps, (%d)",
mp3data->stereo, mp3data->samplerate, mp3data->bitrate,
mp3data->framesize);
}
if (format == MP3_AUDIO_ID) {
if (decode->padrate > 0) {
padding = (int)((double)padding / (double)decode->padrate * mp3data->samplerate)
* mp3data->stereo * 2;
memset(buffer, 0, sizeof(buffer));
while (padding >= sizeof(buffer)) {
if (tc_pwrite(decode->fd_out, (uint8_t *)buffer, sizeof(buffer)) != sizeof(buffer)) {
tc_log_error(__FILE__, "error while writing padding output data");
import_exit(1);
}
padding -= sizeof(buffer);
}
if (padding && tc_pwrite(decode->fd_out, (uint8_t *)buffer, padding) != padding) {
tc_log_error(__FILE__, "error while writing final padding output data");
import_exit(1);
}
}
}
// decoder loop
channels = mp3data->stereo;
while ((samples=lame_decode_fromfile(in_file, ch1, ch2, mp3data)) > 0) {
// interleave data
j = 0;
switch (channels) {
case 1: // mono
ac_memcpy (buffer, ch1, samples * sizeof(uint16_t));
break;
case 2: // stereo
for (i=0; i < samples; i++) {
*(buffer+j+0) = ch1[i];
*(buffer+j+1) = ch2[i];
j+=2;
}
break;
}
bytes = samples * channels * sizeof(uint16_t);
if (tc_pwrite(decode->fd_out, (uint8_t *) buffer, bytes) != bytes) {
tc_log_error(__FILE__, "error while writing output data");
import_exit(1);
break; /* broken pipe */
}
}
import_exit(0);
#else // HAVE_LAME
tc_log_error(__FILE__, "no lame support available");
import_exit(1);
#endif
}
void decode_mp3(decode_t *decode)
{
decode_mpaudio(decode, MP3_AUDIO_ID);
}
void decode_mp2(decode_t *decode)
{
decode_mpaudio(decode, MP2_AUDIO_ID);
}
/*************************************************************************/
/*
* Local variables:
* c-file-style: "stroustrup"
* c-file-offsets: ((case-label . *) (statement-case-intro . *))
* indent-tabs-mode: nil
* End:
*
* vim: expandtab shiftwidth=4:
*/
|