mp3: no CamelCase
Renamed all functions and variables. Also removed the mp3DecodeData typedef.
This commit is contained in:
parent
1f7c53e619
commit
e4bbc120ac
@ -50,7 +50,7 @@ enum muteframe {
|
|||||||
|
|
||||||
#define DEFAULT_GAPLESS_MP3_PLAYBACK 1
|
#define DEFAULT_GAPLESS_MP3_PLAYBACK 1
|
||||||
|
|
||||||
static int gaplessPlaybackEnabled;
|
static int gapless_playback;
|
||||||
|
|
||||||
static inline int32_t
|
static inline int32_t
|
||||||
mad_fixed_to_24_sample(mad_fixed_t sample)
|
mad_fixed_to_24_sample(mad_fixed_t sample)
|
||||||
@ -89,61 +89,61 @@ mad_fixed_to_24_buffer(int32_t *dest, const struct mad_synth *synth,
|
|||||||
|
|
||||||
static int mp3_plugin_init(void)
|
static int mp3_plugin_init(void)
|
||||||
{
|
{
|
||||||
gaplessPlaybackEnabled = getBoolConfigParam(CONF_GAPLESS_MP3_PLAYBACK,
|
gapless_playback = getBoolConfigParam(CONF_GAPLESS_MP3_PLAYBACK, 1);
|
||||||
1);
|
if (gapless_playback == CONF_BOOL_UNSET)
|
||||||
if (gaplessPlaybackEnabled == CONF_BOOL_UNSET)
|
gapless_playback = DEFAULT_GAPLESS_MP3_PLAYBACK;
|
||||||
gaplessPlaybackEnabled = DEFAULT_GAPLESS_MP3_PLAYBACK;
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define MP3_DATA_OUTPUT_BUFFER_SIZE 2048
|
#define MP3_DATA_OUTPUT_BUFFER_SIZE 2048
|
||||||
|
|
||||||
typedef struct _mp3DecodeData {
|
struct mp3_data {
|
||||||
struct mad_stream stream;
|
struct mad_stream stream;
|
||||||
struct mad_frame frame;
|
struct mad_frame frame;
|
||||||
struct mad_synth synth;
|
struct mad_synth synth;
|
||||||
mad_timer_t timer;
|
mad_timer_t timer;
|
||||||
unsigned char readBuffer[READ_BUFFER_SIZE];
|
unsigned char input_buffer[READ_BUFFER_SIZE];
|
||||||
int32_t outputBuffer[MP3_DATA_OUTPUT_BUFFER_SIZE];
|
int32_t output_buffer[MP3_DATA_OUTPUT_BUFFER_SIZE];
|
||||||
float totalTime;
|
float total_time;
|
||||||
float elapsedTime;
|
float elapsed_time;
|
||||||
enum muteframe muteFrame;
|
enum muteframe mute_frame;
|
||||||
long *frameOffset;
|
long *frame_offsets;
|
||||||
mad_timer_t *times;
|
mad_timer_t *times;
|
||||||
unsigned long highestFrame;
|
unsigned long highest_frame;
|
||||||
unsigned long maxFrames;
|
unsigned long max_frames;
|
||||||
unsigned long currentFrame;
|
unsigned long current_frame;
|
||||||
unsigned int dropFramesAtStart;
|
unsigned int drop_start_frames;
|
||||||
unsigned int dropFramesAtEnd;
|
unsigned int drop_end_frames;
|
||||||
unsigned int dropSamplesAtStart;
|
unsigned int drop_start_samples;
|
||||||
unsigned int dropSamplesAtEnd;
|
unsigned int drop_end_samples;
|
||||||
int foundXing;
|
int found_xing;
|
||||||
int foundFirstFrame;
|
int found_first_frame;
|
||||||
int decodedFirstFrame;
|
int decoded_first_frame;
|
||||||
unsigned long bitRate;
|
unsigned long bit_rate;
|
||||||
struct decoder *decoder;
|
struct decoder *decoder;
|
||||||
struct input_stream *inStream;
|
struct input_stream *input_stream;
|
||||||
enum mad_layer layer;
|
enum mad_layer layer;
|
||||||
} mp3DecodeData;
|
};
|
||||||
|
|
||||||
static void initMp3DecodeData(mp3DecodeData * data, struct decoder *decoder,
|
static void
|
||||||
struct input_stream *inStream)
|
mp3_data_init(struct mp3_data *data, struct decoder *decoder,
|
||||||
|
struct input_stream *input_stream)
|
||||||
{
|
{
|
||||||
data->muteFrame = MUTEFRAME_NONE;
|
data->mute_frame = MUTEFRAME_NONE;
|
||||||
data->highestFrame = 0;
|
data->highest_frame = 0;
|
||||||
data->maxFrames = 0;
|
data->max_frames = 0;
|
||||||
data->frameOffset = NULL;
|
data->frame_offsets = NULL;
|
||||||
data->times = NULL;
|
data->times = NULL;
|
||||||
data->currentFrame = 0;
|
data->current_frame = 0;
|
||||||
data->dropFramesAtStart = 0;
|
data->drop_start_frames = 0;
|
||||||
data->dropFramesAtEnd = 0;
|
data->drop_end_frames = 0;
|
||||||
data->dropSamplesAtStart = 0;
|
data->drop_start_samples = 0;
|
||||||
data->dropSamplesAtEnd = 0;
|
data->drop_end_samples = 0;
|
||||||
data->foundXing = 0;
|
data->found_xing = 0;
|
||||||
data->foundFirstFrame = 0;
|
data->found_first_frame = 0;
|
||||||
data->decodedFirstFrame = 0;
|
data->decoded_first_frame = 0;
|
||||||
data->decoder = decoder;
|
data->decoder = decoder;
|
||||||
data->inStream = inStream;
|
data->input_stream = input_stream;
|
||||||
data->layer = 0;
|
data->layer = 0;
|
||||||
|
|
||||||
mad_stream_init(&data->stream);
|
mad_stream_init(&data->stream);
|
||||||
@ -153,61 +153,61 @@ static void initMp3DecodeData(mp3DecodeData * data, struct decoder *decoder,
|
|||||||
mad_timer_reset(&data->timer);
|
mad_timer_reset(&data->timer);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int seekMp3InputBuffer(mp3DecodeData * data, long offset)
|
static int mp3_seek(struct mp3_data *data, long offset)
|
||||||
{
|
{
|
||||||
if (!input_stream_seek(data->inStream, offset, SEEK_SET))
|
if (!input_stream_seek(data->input_stream, offset, SEEK_SET))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
mad_stream_buffer(&data->stream, data->readBuffer, 0);
|
mad_stream_buffer(&data->stream, data->input_buffer, 0);
|
||||||
(data->stream).error = 0;
|
(data->stream).error = 0;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fillMp3InputBuffer(mp3DecodeData * data)
|
static int mp3_fill_buffer(struct mp3_data *data)
|
||||||
{
|
{
|
||||||
size_t readSize;
|
size_t remaining, length;
|
||||||
size_t remaining;
|
unsigned char *dest;
|
||||||
size_t readed;
|
|
||||||
unsigned char *readStart;
|
|
||||||
|
|
||||||
if ((data->stream).next_frame != NULL) {
|
if (data->stream.next_frame != NULL) {
|
||||||
remaining = (data->stream).bufend - (data->stream).next_frame;
|
remaining = data->stream.bufend - data->stream.next_frame;
|
||||||
memmove(data->readBuffer, (data->stream).next_frame, remaining);
|
memmove(data->input_buffer, data->stream.next_frame,
|
||||||
readStart = (data->readBuffer) + remaining;
|
remaining);
|
||||||
readSize = READ_BUFFER_SIZE - remaining;
|
dest = (data->input_buffer) + remaining;
|
||||||
|
length = READ_BUFFER_SIZE - remaining;
|
||||||
} else {
|
} else {
|
||||||
readSize = READ_BUFFER_SIZE;
|
remaining = 0;
|
||||||
readStart = data->readBuffer, remaining = 0;
|
length = READ_BUFFER_SIZE;
|
||||||
|
dest = data->input_buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* we've exhausted the read buffer, so give up!, these potential
|
/* we've exhausted the read buffer, so give up!, these potential
|
||||||
* mp3 frames are way too big, and thus unlikely to be mp3 frames */
|
* mp3 frames are way too big, and thus unlikely to be mp3 frames */
|
||||||
if (readSize == 0)
|
if (length == 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
readed = decoder_read(data->decoder, data->inStream,
|
length = decoder_read(data->decoder, data->input_stream, dest, length);
|
||||||
readStart, readSize);
|
if (length == 0)
|
||||||
if (readed == 0)
|
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
mad_stream_buffer(&data->stream, data->readBuffer, readed + remaining);
|
mad_stream_buffer(&data->stream, data->input_buffer,
|
||||||
|
length + remaining);
|
||||||
(data->stream).error = 0;
|
(data->stream).error = 0;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef HAVE_ID3TAG
|
#ifdef HAVE_ID3TAG
|
||||||
static ReplayGainInfo *parseId3ReplayGainInfo(struct id3_tag *tag)
|
static ReplayGainInfo *parse_id3_replay_gain_info(struct id3_tag *tag)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
char *key;
|
char *key;
|
||||||
char *value;
|
char *value;
|
||||||
struct id3_frame *frame;
|
struct id3_frame *frame;
|
||||||
int found = 0;
|
int found = 0;
|
||||||
ReplayGainInfo *replayGainInfo;
|
ReplayGainInfo *replay_gain_info;
|
||||||
|
|
||||||
replayGainInfo = newReplayGainInfo();
|
replay_gain_info = newReplayGainInfo();
|
||||||
|
|
||||||
for (i = 0; (frame = id3_tag_findframe(tag, "TXXX", i)); i++) {
|
for (i = 0; (frame = id3_tag_findframe(tag, "TXXX", i)); i++) {
|
||||||
if (frame->nfields < 3)
|
if (frame->nfields < 3)
|
||||||
@ -221,16 +221,16 @@ static ReplayGainInfo *parseId3ReplayGainInfo(struct id3_tag *tag)
|
|||||||
(&frame->fields[2]));
|
(&frame->fields[2]));
|
||||||
|
|
||||||
if (strcasecmp(key, "replaygain_track_gain") == 0) {
|
if (strcasecmp(key, "replaygain_track_gain") == 0) {
|
||||||
replayGainInfo->trackGain = atof(value);
|
replay_gain_info->trackGain = atof(value);
|
||||||
found = 1;
|
found = 1;
|
||||||
} else if (strcasecmp(key, "replaygain_album_gain") == 0) {
|
} else if (strcasecmp(key, "replaygain_album_gain") == 0) {
|
||||||
replayGainInfo->albumGain = atof(value);
|
replay_gain_info->albumGain = atof(value);
|
||||||
found = 1;
|
found = 1;
|
||||||
} else if (strcasecmp(key, "replaygain_track_peak") == 0) {
|
} else if (strcasecmp(key, "replaygain_track_peak") == 0) {
|
||||||
replayGainInfo->trackPeak = atof(value);
|
replay_gain_info->trackPeak = atof(value);
|
||||||
found = 1;
|
found = 1;
|
||||||
} else if (strcasecmp(key, "replaygain_album_peak") == 0) {
|
} else if (strcasecmp(key, "replaygain_album_peak") == 0) {
|
||||||
replayGainInfo->albumPeak = atof(value);
|
replay_gain_info->albumPeak = atof(value);
|
||||||
found = 1;
|
found = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -239,22 +239,21 @@ static ReplayGainInfo *parseId3ReplayGainInfo(struct id3_tag *tag)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (found)
|
if (found)
|
||||||
return replayGainInfo;
|
return replay_gain_info;
|
||||||
freeReplayGainInfo(replayGainInfo);
|
freeReplayGainInfo(replay_gain_info);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_ID3TAG
|
#ifdef HAVE_ID3TAG
|
||||||
static void mp3_parseId3Tag(mp3DecodeData * data, size_t tagsize,
|
static void mp3_parse_id3(struct mp3_data *data, size_t tagsize,
|
||||||
struct tag ** mpdTag, ReplayGainInfo ** replayGainInfo)
|
struct tag **mpd_tag,
|
||||||
|
ReplayGainInfo **replay_gain_info_r)
|
||||||
{
|
{
|
||||||
struct id3_tag *id3Tag = NULL;
|
struct id3_tag *id3_tag = NULL;
|
||||||
id3_length_t count;
|
id3_length_t count;
|
||||||
id3_byte_t const *id3_data;
|
id3_byte_t const *id3_data;
|
||||||
id3_byte_t *allocated = NULL;
|
id3_byte_t *allocated = NULL;
|
||||||
struct tag *tmpMpdTag;
|
|
||||||
ReplayGainInfo *tmpReplayGainInfo;
|
|
||||||
|
|
||||||
count = data->stream.bufend - data->stream.this_frame;
|
count = data->stream.bufend - data->stream.this_frame;
|
||||||
|
|
||||||
@ -272,7 +271,7 @@ static void mp3_parseId3Tag(mp3DecodeData * data, size_t tagsize,
|
|||||||
while (count < tagsize) {
|
while (count < tagsize) {
|
||||||
size_t len;
|
size_t len;
|
||||||
|
|
||||||
len = decoder_read(data->decoder, data->inStream,
|
len = decoder_read(data->decoder, data->input_stream,
|
||||||
allocated + count, tagsize - count);
|
allocated + count, tagsize - count);
|
||||||
if (len == 0)
|
if (len == 0)
|
||||||
break;
|
break;
|
||||||
@ -288,29 +287,29 @@ static void mp3_parseId3Tag(mp3DecodeData * data, size_t tagsize,
|
|||||||
id3_data = allocated;
|
id3_data = allocated;
|
||||||
}
|
}
|
||||||
|
|
||||||
id3Tag = id3_tag_parse(id3_data, tagsize);
|
id3_tag = id3_tag_parse(id3_data, tagsize);
|
||||||
if (!id3Tag)
|
if (id3_tag == NULL)
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
if (mpdTag) {
|
if (mpd_tag) {
|
||||||
tmpMpdTag = tag_id3_import(id3Tag);
|
struct tag *tmp_tag = tag_id3_import(id3_tag);
|
||||||
if (tmpMpdTag) {
|
if (tmp_tag != NULL) {
|
||||||
if (*mpdTag)
|
if (*mpd_tag != NULL)
|
||||||
tag_free(*mpdTag);
|
tag_free(*mpd_tag);
|
||||||
*mpdTag = tmpMpdTag;
|
*mpd_tag = tmp_tag;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (replayGainInfo) {
|
if (replay_gain_info_r) {
|
||||||
tmpReplayGainInfo = parseId3ReplayGainInfo(id3Tag);
|
ReplayGainInfo *tmp_rgi = parse_id3_replay_gain_info(id3_tag);
|
||||||
if (tmpReplayGainInfo) {
|
if (tmp_rgi != NULL) {
|
||||||
if (*replayGainInfo)
|
if (*replay_gain_info_r)
|
||||||
freeReplayGainInfo(*replayGainInfo);
|
freeReplayGainInfo(*replay_gain_info_r);
|
||||||
*replayGainInfo = tmpReplayGainInfo;
|
*replay_gain_info_r = tmp_rgi;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
id3_tag_delete(id3Tag);
|
id3_tag_delete(id3_tag);
|
||||||
fail:
|
fail:
|
||||||
if (allocated)
|
if (allocated)
|
||||||
free(allocated);
|
free(allocated);
|
||||||
@ -318,14 +317,14 @@ fail:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
static enum mp3_action
|
static enum mp3_action
|
||||||
decodeNextFrameHeader(mp3DecodeData * data, struct tag ** tag,
|
decode_next_frame_header(struct mp3_data *data, struct tag **tag,
|
||||||
ReplayGainInfo ** replayGainInfo)
|
ReplayGainInfo **replay_gain_info_r)
|
||||||
{
|
{
|
||||||
enum mad_layer layer;
|
enum mad_layer layer;
|
||||||
|
|
||||||
if ((data->stream).buffer == NULL
|
if ((data->stream).buffer == NULL
|
||||||
|| (data->stream).error == MAD_ERROR_BUFLEN) {
|
|| (data->stream).error == MAD_ERROR_BUFLEN) {
|
||||||
if (fillMp3InputBuffer(data) < 0) {
|
if (mp3_fill_buffer(data) < 0) {
|
||||||
return DECODE_BREAK;
|
return DECODE_BREAK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -342,8 +341,8 @@ decodeNextFrameHeader(mp3DecodeData * data, struct tag ** tag,
|
|||||||
|
|
||||||
if (tagsize > 0) {
|
if (tagsize > 0) {
|
||||||
if (tag && !(*tag)) {
|
if (tag && !(*tag)) {
|
||||||
mp3_parseId3Tag(data, (size_t)tagsize,
|
mp3_parse_id3(data, (size_t)tagsize,
|
||||||
tag, replayGainInfo);
|
tag, replay_gain_info_r);
|
||||||
} else {
|
} else {
|
||||||
mad_stream_skip(&(data->stream),
|
mad_stream_skip(&(data->stream),
|
||||||
tagsize);
|
tagsize);
|
||||||
@ -382,11 +381,11 @@ decodeNextFrameHeader(mp3DecodeData * data, struct tag ** tag,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static enum mp3_action
|
static enum mp3_action
|
||||||
decodeNextFrame(mp3DecodeData * data)
|
decodeNextFrame(struct mp3_data *data)
|
||||||
{
|
{
|
||||||
if ((data->stream).buffer == NULL
|
if ((data->stream).buffer == NULL
|
||||||
|| (data->stream).error == MAD_ERROR_BUFLEN) {
|
|| (data->stream).error == MAD_ERROR_BUFLEN) {
|
||||||
if (fillMp3InputBuffer(data) < 0) {
|
if (mp3_fill_buffer(data) < 0) {
|
||||||
return DECODE_BREAK;
|
return DECODE_BREAK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -458,10 +457,10 @@ struct lame {
|
|||||||
char encoder[10]; /* 9 byte encoder name/version ("LAME3.97b") */
|
char encoder[10]; /* 9 byte encoder name/version ("LAME3.97b") */
|
||||||
struct version version; /* struct containing just the version */
|
struct version version; /* struct containing just the version */
|
||||||
float peak; /* replaygain peak */
|
float peak; /* replaygain peak */
|
||||||
float trackGain; /* replaygain track gain */
|
float track_gain; /* replaygain track gain */
|
||||||
float albumGain; /* replaygain album gain */
|
float album_gain; /* replaygain album gain */
|
||||||
int encoderDelay; /* # of added samples at start of mp3 */
|
int encoder_delay; /* # of added samples at start of mp3 */
|
||||||
int encoderPadding; /* # of added samples at end of mp3 */
|
int encoder_padding; /* # of added samples at end of mp3 */
|
||||||
int crc; /* CRC of the first 190 bytes of this frame */
|
int crc; /* CRC of the first 190 bytes of this frame */
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -587,29 +586,29 @@ static int parse_lame(struct lame *lame, struct mad_bitptr *ptr, int *bitlen)
|
|||||||
lame->peak = mad_f_todouble(mad_bit_read(ptr, 32) << 5); /* peak */
|
lame->peak = mad_f_todouble(mad_bit_read(ptr, 32) << 5); /* peak */
|
||||||
DEBUG("LAME peak found: %f\n", lame->peak);
|
DEBUG("LAME peak found: %f\n", lame->peak);
|
||||||
|
|
||||||
lame->trackGain = 0;
|
lame->track_gain = 0;
|
||||||
name = mad_bit_read(ptr, 3); /* gain name */
|
name = mad_bit_read(ptr, 3); /* gain name */
|
||||||
orig = mad_bit_read(ptr, 3); /* gain originator */
|
orig = mad_bit_read(ptr, 3); /* gain originator */
|
||||||
sign = mad_bit_read(ptr, 1); /* sign bit */
|
sign = mad_bit_read(ptr, 1); /* sign bit */
|
||||||
gain = mad_bit_read(ptr, 9); /* gain*10 */
|
gain = mad_bit_read(ptr, 9); /* gain*10 */
|
||||||
if (gain && name == 1 && orig != 0) {
|
if (gain && name == 1 && orig != 0) {
|
||||||
lame->trackGain = ((sign ? -gain : gain) / 10.0) + adj;
|
lame->track_gain = ((sign ? -gain : gain) / 10.0) + adj;
|
||||||
DEBUG("LAME track gain found: %f\n", lame->trackGain);
|
DEBUG("LAME track gain found: %f\n", lame->track_gain);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* tmz reports that this isn't currently written by any version of lame
|
/* tmz reports that this isn't currently written by any version of lame
|
||||||
* (as of 3.97). Since we have no way of testing it, don't use it.
|
* (as of 3.97). Since we have no way of testing it, don't use it.
|
||||||
* Wouldn't want to go blowing someone's ears just because we read it
|
* Wouldn't want to go blowing someone's ears just because we read it
|
||||||
* wrong. :P -- jat */
|
* wrong. :P -- jat */
|
||||||
lame->albumGain = 0;
|
lame->album_gain = 0;
|
||||||
#if 0
|
#if 0
|
||||||
name = mad_bit_read(ptr, 3); /* gain name */
|
name = mad_bit_read(ptr, 3); /* gain name */
|
||||||
orig = mad_bit_read(ptr, 3); /* gain originator */
|
orig = mad_bit_read(ptr, 3); /* gain originator */
|
||||||
sign = mad_bit_read(ptr, 1); /* sign bit */
|
sign = mad_bit_read(ptr, 1); /* sign bit */
|
||||||
gain = mad_bit_read(ptr, 9); /* gain*10 */
|
gain = mad_bit_read(ptr, 9); /* gain*10 */
|
||||||
if (gain && name == 2 && orig != 0) {
|
if (gain && name == 2 && orig != 0) {
|
||||||
lame->albumGain = ((sign ? -gain : gain) / 10.0) + adj;
|
lame->album_gain = ((sign ? -gain : gain) / 10.0) + adj;
|
||||||
DEBUG("LAME album gain found: %f\n", lame->trackGain);
|
DEBUG("LAME album gain found: %f\n", lame->track_gain);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
mad_bit_read(ptr, 16);
|
mad_bit_read(ptr, 16);
|
||||||
@ -617,11 +616,11 @@ static int parse_lame(struct lame *lame, struct mad_bitptr *ptr, int *bitlen)
|
|||||||
|
|
||||||
mad_bit_read(ptr, 16);
|
mad_bit_read(ptr, 16);
|
||||||
|
|
||||||
lame->encoderDelay = mad_bit_read(ptr, 12);
|
lame->encoder_delay = mad_bit_read(ptr, 12);
|
||||||
lame->encoderPadding = mad_bit_read(ptr, 12);
|
lame->encoder_padding = mad_bit_read(ptr, 12);
|
||||||
|
|
||||||
DEBUG("encoder delay is %i, encoder padding is %i\n",
|
DEBUG("encoder delay is %i, encoder padding is %i\n",
|
||||||
lame->encoderDelay, lame->encoderPadding);
|
lame->encoder_delay, lame->encoder_padding);
|
||||||
|
|
||||||
mad_bit_read(ptr, 80);
|
mad_bit_read(ptr, 80);
|
||||||
|
|
||||||
@ -632,8 +631,9 @@ static int parse_lame(struct lame *lame, struct mad_bitptr *ptr, int *bitlen)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int decodeFirstFrame(mp3DecodeData * data,
|
static int
|
||||||
struct tag ** tag, ReplayGainInfo ** replayGainInfo)
|
mp3_decode_first_frame(struct mp3_data *data, struct tag **tag,
|
||||||
|
ReplayGainInfo **replay_gain_info_r)
|
||||||
{
|
{
|
||||||
struct decoder *decoder = data->decoder;
|
struct decoder *decoder = data->decoder;
|
||||||
struct xing xing;
|
struct xing xing;
|
||||||
@ -647,7 +647,7 @@ static int decodeFirstFrame(mp3DecodeData * data,
|
|||||||
xing.flags = 0;
|
xing.flags = 0;
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
while ((ret = decodeNextFrameHeader(data, tag, replayGainInfo)) == DECODE_CONT &&
|
while ((ret = decode_next_frame_header(data, tag, replay_gain_info_r)) == DECODE_CONT &&
|
||||||
(!decoder || decoder_get_command(decoder) == DECODE_COMMAND_NONE));
|
(!decoder || decoder_get_command(decoder) == DECODE_COMMAND_NONE));
|
||||||
if (ret == DECODE_BREAK ||
|
if (ret == DECODE_BREAK ||
|
||||||
(decoder && decoder_get_command(decoder) != DECODE_COMMAND_NONE))
|
(decoder && decoder_get_command(decoder) != DECODE_COMMAND_NONE))
|
||||||
@ -669,112 +669,111 @@ static int decodeFirstFrame(mp3DecodeData * data,
|
|||||||
* Attempt to calulcate the length of the song from filesize
|
* Attempt to calulcate the length of the song from filesize
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
off_t offset = data->inStream->offset;
|
off_t offset = data->input_stream->offset;
|
||||||
mad_timer_t duration = data->frame.header.duration;
|
mad_timer_t duration = data->frame.header.duration;
|
||||||
float frameTime = ((float)mad_timer_count(duration,
|
float frame_duration = ((float)mad_timer_count(duration, MAD_UNITS_MILLISECONDS)) / 1000;
|
||||||
MAD_UNITS_MILLISECONDS)) / 1000;
|
|
||||||
|
|
||||||
if (data->stream.this_frame != NULL)
|
if (data->stream.this_frame != NULL)
|
||||||
offset -= data->stream.bufend - data->stream.this_frame;
|
offset -= data->stream.bufend - data->stream.this_frame;
|
||||||
else
|
else
|
||||||
offset -= data->stream.bufend - data->stream.buffer;
|
offset -= data->stream.bufend - data->stream.buffer;
|
||||||
|
|
||||||
if (data->inStream->size >= offset) {
|
if (data->input_stream->size >= offset) {
|
||||||
data->totalTime = ((data->inStream->size - offset) *
|
data->total_time = ((data->input_stream->size - offset) *
|
||||||
8.0) / (data->frame).header.bitrate;
|
8.0) / (data->frame).header.bitrate;
|
||||||
data->maxFrames = data->totalTime / frameTime +
|
data->max_frames = data->total_time / frame_duration +
|
||||||
FRAMES_CUSHION;
|
FRAMES_CUSHION;
|
||||||
} else {
|
} else {
|
||||||
data->maxFrames = FRAMES_CUSHION;
|
data->max_frames = FRAMES_CUSHION;
|
||||||
data->totalTime = 0;
|
data->total_time = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* if an xing tag exists, use that!
|
* if an xing tag exists, use that!
|
||||||
*/
|
*/
|
||||||
if (parse_xing(&xing, &ptr, &bitlen)) {
|
if (parse_xing(&xing, &ptr, &bitlen)) {
|
||||||
data->foundXing = 1;
|
data->found_xing = 1;
|
||||||
data->muteFrame = MUTEFRAME_SKIP;
|
data->mute_frame = MUTEFRAME_SKIP;
|
||||||
|
|
||||||
if ((xing.flags & XING_FRAMES) && xing.frames) {
|
if ((xing.flags & XING_FRAMES) && xing.frames) {
|
||||||
mad_timer_t duration = data->frame.header.duration;
|
mad_timer_t duration = data->frame.header.duration;
|
||||||
mad_timer_multiply(&duration, xing.frames);
|
mad_timer_multiply(&duration, xing.frames);
|
||||||
data->totalTime = ((float)mad_timer_count(duration, MAD_UNITS_MILLISECONDS)) / 1000;
|
data->total_time = ((float)mad_timer_count(duration, MAD_UNITS_MILLISECONDS)) / 1000;
|
||||||
data->maxFrames = xing.frames;
|
data->max_frames = xing.frames;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parse_lame(&lame, &ptr, &bitlen)) {
|
if (parse_lame(&lame, &ptr, &bitlen)) {
|
||||||
if (gaplessPlaybackEnabled &&
|
if (gapless_playback &&
|
||||||
data->inStream->seekable) {
|
data->input_stream->seekable) {
|
||||||
data->dropSamplesAtStart = lame.encoderDelay +
|
data->drop_start_samples = lame.encoder_delay +
|
||||||
DECODERDELAY;
|
DECODERDELAY;
|
||||||
data->dropSamplesAtEnd = lame.encoderPadding;
|
data->drop_end_samples = lame.encoder_padding;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Album gain isn't currently used. See comment in
|
/* Album gain isn't currently used. See comment in
|
||||||
* parse_lame() for details. -- jat */
|
* parse_lame() for details. -- jat */
|
||||||
if (replayGainInfo && !*replayGainInfo &&
|
if (replay_gain_info_r && !*replay_gain_info_r &&
|
||||||
lame.trackGain) {
|
lame.track_gain) {
|
||||||
*replayGainInfo = newReplayGainInfo();
|
*replay_gain_info_r = newReplayGainInfo();
|
||||||
(*replayGainInfo)->trackGain = lame.trackGain;
|
(*replay_gain_info_r)->trackGain = lame.track_gain;
|
||||||
(*replayGainInfo)->trackPeak = lame.peak;
|
(*replay_gain_info_r)->trackPeak = lame.peak;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!data->maxFrames) return -1;
|
if (!data->max_frames) return -1;
|
||||||
|
|
||||||
if (data->maxFrames > 8 * 1024 * 1024) {
|
if (data->max_frames > 8 * 1024 * 1024) {
|
||||||
ERROR("mp3 file header indicates too many frames: %lu",
|
ERROR("mp3 file header indicates too many frames: %lu",
|
||||||
data->maxFrames);
|
data->max_frames);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
data->frameOffset = xmalloc(sizeof(long) * data->maxFrames);
|
data->frame_offsets = xmalloc(sizeof(long) * data->max_frames);
|
||||||
data->times = xmalloc(sizeof(mad_timer_t) * data->maxFrames);
|
data->times = xmalloc(sizeof(mad_timer_t) * data->max_frames);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mp3DecodeDataFinalize(mp3DecodeData * data)
|
static void mp3_data_finish(struct mp3_data *data)
|
||||||
{
|
{
|
||||||
mad_synth_finish(&data->synth);
|
mad_synth_finish(&data->synth);
|
||||||
mad_frame_finish(&data->frame);
|
mad_frame_finish(&data->frame);
|
||||||
mad_stream_finish(&data->stream);
|
mad_stream_finish(&data->stream);
|
||||||
|
|
||||||
if (data->frameOffset) free(data->frameOffset);
|
if (data->frame_offsets) free(data->frame_offsets);
|
||||||
if (data->times) free(data->times);
|
if (data->times) free(data->times);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* this is primarily used for getting total time for tags */
|
/* this is primarily used for getting total time for tags */
|
||||||
static int getMp3TotalTime(char *file)
|
static int mp3_total_file_time(char *file)
|
||||||
{
|
{
|
||||||
struct input_stream inStream;
|
struct input_stream input_stream;
|
||||||
mp3DecodeData data;
|
struct mp3_data data;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (!input_stream_open(&inStream, file))
|
if (!input_stream_open(&input_stream, file))
|
||||||
return -1;
|
return -1;
|
||||||
initMp3DecodeData(&data, NULL, &inStream);
|
mp3_data_init(&data, NULL, &input_stream);
|
||||||
if (decodeFirstFrame(&data, NULL, NULL) < 0)
|
if (mp3_decode_first_frame(&data, NULL, NULL) < 0)
|
||||||
ret = -1;
|
ret = -1;
|
||||||
else
|
else
|
||||||
ret = data.totalTime + 0.5;
|
ret = data.total_time + 0.5;
|
||||||
mp3DecodeDataFinalize(&data);
|
mp3_data_finish(&data);
|
||||||
input_stream_close(&inStream);
|
input_stream_close(&input_stream);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
openMp3FromInputStream(struct input_stream *inStream, mp3DecodeData * data,
|
mp3_open(struct input_stream *is, struct mp3_data *data,
|
||||||
struct decoder *decoder, struct tag **tag,
|
struct decoder *decoder, struct tag **tag,
|
||||||
ReplayGainInfo **replayGainInfo)
|
ReplayGainInfo **replay_gain_info_r)
|
||||||
{
|
{
|
||||||
initMp3DecodeData(data, decoder, inStream);
|
mp3_data_init(data, decoder, is);
|
||||||
*tag = NULL;
|
*tag = NULL;
|
||||||
if (decodeFirstFrame(data, tag, replayGainInfo) < 0) {
|
if (mp3_decode_first_frame(data, tag, replay_gain_info_r) < 0) {
|
||||||
mp3DecodeDataFinalize(data);
|
mp3_data_finish(data);
|
||||||
if (tag && *tag)
|
if (tag && *tag)
|
||||||
tag_free(*tag);
|
tag_free(*tag);
|
||||||
return -1;
|
return -1;
|
||||||
@ -784,7 +783,7 @@ openMp3FromInputStream(struct input_stream *inStream, mp3DecodeData * data,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static enum mp3_action
|
static enum mp3_action
|
||||||
mp3Read(mp3DecodeData * data, ReplayGainInfo ** replayGainInfo)
|
mp3_read(struct mp3_data *data, ReplayGainInfo **replay_gain_info_r)
|
||||||
{
|
{
|
||||||
struct decoder *decoder = data->decoder;
|
struct decoder *decoder = data->decoder;
|
||||||
unsigned int pcm_length, max_samples;
|
unsigned int pcm_length, max_samples;
|
||||||
@ -792,94 +791,94 @@ mp3Read(mp3DecodeData * data, ReplayGainInfo ** replayGainInfo)
|
|||||||
int ret;
|
int ret;
|
||||||
int skip;
|
int skip;
|
||||||
|
|
||||||
if (data->currentFrame >= data->highestFrame) {
|
if (data->current_frame >= data->highest_frame) {
|
||||||
mad_timer_add(&data->timer, (data->frame).header.duration);
|
mad_timer_add(&data->timer, (data->frame).header.duration);
|
||||||
data->bitRate = (data->frame).header.bitrate;
|
data->bit_rate = (data->frame).header.bitrate;
|
||||||
if (data->currentFrame >= data->maxFrames) {
|
if (data->current_frame >= data->max_frames) {
|
||||||
data->currentFrame = data->maxFrames - 1;
|
data->current_frame = data->max_frames - 1;
|
||||||
} else {
|
} else {
|
||||||
data->highestFrame++;
|
data->highest_frame++;
|
||||||
}
|
}
|
||||||
data->frameOffset[data->currentFrame] = data->inStream->offset;
|
data->frame_offsets[data->current_frame] = data->input_stream->offset;
|
||||||
if (data->stream.this_frame != NULL) {
|
if (data->stream.this_frame != NULL) {
|
||||||
data->frameOffset[data->currentFrame] -=
|
data->frame_offsets[data->current_frame] -=
|
||||||
data->stream.bufend - data->stream.this_frame;
|
data->stream.bufend - data->stream.this_frame;
|
||||||
} else {
|
} else {
|
||||||
data->frameOffset[data->currentFrame] -=
|
data->frame_offsets[data->current_frame] -=
|
||||||
data->stream.bufend - data->stream.buffer;
|
data->stream.bufend - data->stream.buffer;
|
||||||
}
|
}
|
||||||
data->times[data->currentFrame] = data->timer;
|
data->times[data->current_frame] = data->timer;
|
||||||
} else {
|
} else {
|
||||||
data->timer = data->times[data->currentFrame];
|
data->timer = data->times[data->current_frame];
|
||||||
}
|
}
|
||||||
data->currentFrame++;
|
data->current_frame++;
|
||||||
data->elapsedTime =
|
data->elapsed_time =
|
||||||
((float)mad_timer_count(data->timer, MAD_UNITS_MILLISECONDS)) /
|
((float)mad_timer_count(data->timer, MAD_UNITS_MILLISECONDS)) /
|
||||||
1000;
|
1000;
|
||||||
|
|
||||||
switch (data->muteFrame) {
|
switch (data->mute_frame) {
|
||||||
case MUTEFRAME_SKIP:
|
case MUTEFRAME_SKIP:
|
||||||
data->muteFrame = MUTEFRAME_NONE;
|
data->mute_frame = MUTEFRAME_NONE;
|
||||||
break;
|
break;
|
||||||
case MUTEFRAME_SEEK:
|
case MUTEFRAME_SEEK:
|
||||||
if (decoder_seek_where(decoder) <= data->elapsedTime) {
|
if (decoder_seek_where(decoder) <= data->elapsed_time) {
|
||||||
decoder_clear(decoder);
|
decoder_clear(decoder);
|
||||||
data->muteFrame = MUTEFRAME_NONE;
|
data->mute_frame = MUTEFRAME_NONE;
|
||||||
decoder_command_finished(decoder);
|
decoder_command_finished(decoder);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case MUTEFRAME_NONE:
|
case MUTEFRAME_NONE:
|
||||||
mad_synth_frame(&data->synth, &data->frame);
|
mad_synth_frame(&data->synth, &data->frame);
|
||||||
|
|
||||||
if (!data->foundFirstFrame) {
|
if (!data->found_first_frame) {
|
||||||
unsigned int samplesPerFrame = (data->synth).pcm.length;
|
unsigned int samples_per_frame = (data->synth).pcm.length;
|
||||||
data->dropFramesAtStart = data->dropSamplesAtStart / samplesPerFrame;
|
data->drop_start_frames = data->drop_start_samples / samples_per_frame;
|
||||||
data->dropFramesAtEnd = data->dropSamplesAtEnd / samplesPerFrame;
|
data->drop_end_frames = data->drop_end_samples / samples_per_frame;
|
||||||
data->dropSamplesAtStart = data->dropSamplesAtStart % samplesPerFrame;
|
data->drop_start_samples = data->drop_start_samples % samples_per_frame;
|
||||||
data->dropSamplesAtEnd = data->dropSamplesAtEnd % samplesPerFrame;
|
data->drop_end_samples = data->drop_end_samples % samples_per_frame;
|
||||||
data->foundFirstFrame = 1;
|
data->found_first_frame = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data->dropFramesAtStart > 0) {
|
if (data->drop_start_frames > 0) {
|
||||||
data->dropFramesAtStart--;
|
data->drop_start_frames--;
|
||||||
break;
|
break;
|
||||||
} else if ((data->dropFramesAtEnd > 0) &&
|
} else if ((data->drop_end_frames > 0) &&
|
||||||
(data->currentFrame == (data->maxFrames + 1 - data->dropFramesAtEnd))) {
|
(data->current_frame == (data->max_frames + 1 - data->drop_end_frames))) {
|
||||||
/* stop decoding, effectively dropping all remaining
|
/* stop decoding, effectively dropping all remaining
|
||||||
* frames */
|
* frames */
|
||||||
return DECODE_BREAK;
|
return DECODE_BREAK;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data->inStream->meta_title) {
|
if (data->input_stream->meta_title) {
|
||||||
struct tag *tag = tag_new();
|
struct tag *tag = tag_new();
|
||||||
if (data->inStream->meta_name) {
|
if (data->input_stream->meta_name) {
|
||||||
tag_add_item(tag, TAG_ITEM_NAME,
|
tag_add_item(tag, TAG_ITEM_NAME,
|
||||||
data->inStream->meta_name);
|
data->input_stream->meta_name);
|
||||||
}
|
}
|
||||||
tag_add_item(tag, TAG_ITEM_TITLE,
|
tag_add_item(tag, TAG_ITEM_TITLE,
|
||||||
data->inStream->meta_title);
|
data->input_stream->meta_title);
|
||||||
free(data->inStream->meta_title);
|
free(data->input_stream->meta_title);
|
||||||
data->inStream->meta_title = NULL;
|
data->input_stream->meta_title = NULL;
|
||||||
tag_free(tag);
|
tag_free(tag);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!data->decodedFirstFrame) {
|
if (!data->decoded_first_frame) {
|
||||||
i = data->dropSamplesAtStart;
|
i = data->drop_start_samples;
|
||||||
data->decodedFirstFrame = 1;
|
data->decoded_first_frame = 1;
|
||||||
} else
|
} else
|
||||||
i = 0;
|
i = 0;
|
||||||
|
|
||||||
pcm_length = data->synth.pcm.length;
|
pcm_length = data->synth.pcm.length;
|
||||||
if (data->dropSamplesAtEnd &&
|
if (data->drop_end_samples &&
|
||||||
(data->currentFrame == data->maxFrames - data->dropFramesAtEnd)) {
|
(data->current_frame == data->max_frames - data->drop_end_frames)) {
|
||||||
if (data->dropSamplesAtEnd >= pcm_length)
|
if (data->drop_end_samples >= pcm_length)
|
||||||
pcm_length = 0;
|
pcm_length = 0;
|
||||||
else
|
else
|
||||||
pcm_length -= data->dropSamplesAtEnd;
|
pcm_length -= data->drop_end_samples;
|
||||||
}
|
}
|
||||||
|
|
||||||
max_samples = sizeof(data->outputBuffer) /
|
max_samples = sizeof(data->output_buffer) /
|
||||||
sizeof(data->outputBuffer[0]) /
|
sizeof(data->output_buffer[0]) /
|
||||||
MAD_NCHANNELS(&(data->frame).header);
|
MAD_NCHANNELS(&(data->frame).header);
|
||||||
|
|
||||||
while (i < pcm_length) {
|
while (i < pcm_length) {
|
||||||
@ -890,53 +889,52 @@ mp3Read(mp3DecodeData * data, ReplayGainInfo ** replayGainInfo)
|
|||||||
|
|
||||||
i += num_samples;
|
i += num_samples;
|
||||||
|
|
||||||
mad_fixed_to_24_buffer(data->outputBuffer,
|
mad_fixed_to_24_buffer(data->output_buffer,
|
||||||
&data->synth,
|
&data->synth,
|
||||||
i - num_samples, i,
|
i - num_samples, i,
|
||||||
MAD_NCHANNELS(&(data->frame).header));
|
MAD_NCHANNELS(&(data->frame).header));
|
||||||
num_samples *= MAD_NCHANNELS(&(data->frame).header);
|
num_samples *= MAD_NCHANNELS(&(data->frame).header);
|
||||||
|
|
||||||
cmd = decoder_data(decoder, data->inStream,
|
cmd = decoder_data(decoder, data->input_stream,
|
||||||
data->inStream->seekable,
|
data->input_stream->seekable,
|
||||||
data->outputBuffer,
|
data->output_buffer,
|
||||||
sizeof(data->outputBuffer[0]) * num_samples,
|
sizeof(data->output_buffer[0]) * num_samples,
|
||||||
data->elapsedTime,
|
data->elapsed_time,
|
||||||
data->bitRate / 1000,
|
data->bit_rate / 1000,
|
||||||
(replayGainInfo != NULL) ? *replayGainInfo : NULL);
|
(replay_gain_info_r != NULL) ? *replay_gain_info_r : NULL);
|
||||||
if (cmd == DECODE_COMMAND_STOP)
|
if (cmd == DECODE_COMMAND_STOP)
|
||||||
return DECODE_BREAK;
|
return DECODE_BREAK;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data->dropSamplesAtEnd &&
|
if (data->drop_end_samples &&
|
||||||
(data->currentFrame == data->maxFrames - data->dropFramesAtEnd))
|
(data->current_frame == data->max_frames - data->drop_end_frames))
|
||||||
/* stop decoding, effectively dropping
|
/* stop decoding, effectively dropping
|
||||||
* all remaining samples */
|
* all remaining samples */
|
||||||
return DECODE_BREAK;
|
return DECODE_BREAK;
|
||||||
|
|
||||||
if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK &&
|
if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK &&
|
||||||
data->inStream->seekable) {
|
data->input_stream->seekable) {
|
||||||
unsigned long j = 0;
|
unsigned long j = 0;
|
||||||
data->muteFrame = MUTEFRAME_SEEK;
|
data->mute_frame = MUTEFRAME_SEEK;
|
||||||
while (j < data->highestFrame &&
|
while (j < data->highest_frame &&
|
||||||
decoder_seek_where(decoder) >
|
decoder_seek_where(decoder) >
|
||||||
((float)mad_timer_count(data->times[j],
|
((float)mad_timer_count(data->times[j],
|
||||||
MAD_UNITS_MILLISECONDS))
|
MAD_UNITS_MILLISECONDS))
|
||||||
/ 1000) {
|
/ 1000) {
|
||||||
j++;
|
j++;
|
||||||
}
|
}
|
||||||
if (j < data->highestFrame) {
|
if (j < data->highest_frame) {
|
||||||
if (seekMp3InputBuffer(data,
|
if (mp3_seek(data,
|
||||||
data->frameOffset[j]) ==
|
data->frame_offsets[j]) == 0) {
|
||||||
0) {
|
|
||||||
decoder_clear(decoder);
|
decoder_clear(decoder);
|
||||||
data->currentFrame = j;
|
data->current_frame = j;
|
||||||
decoder_command_finished(decoder);
|
decoder_command_finished(decoder);
|
||||||
} else
|
} else
|
||||||
decoder_seek_error(decoder);
|
decoder_seek_error(decoder);
|
||||||
data->muteFrame = MUTEFRAME_NONE;
|
data->mute_frame = MUTEFRAME_NONE;
|
||||||
}
|
}
|
||||||
} else if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK &&
|
} else if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK &&
|
||||||
!data->inStream->seekable) {
|
!data->input_stream->seekable) {
|
||||||
decoder_seek_error(decoder);
|
decoder_seek_error(decoder);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -944,14 +942,14 @@ mp3Read(mp3DecodeData * data, ReplayGainInfo ** replayGainInfo)
|
|||||||
while (1) {
|
while (1) {
|
||||||
skip = 0;
|
skip = 0;
|
||||||
while ((ret =
|
while ((ret =
|
||||||
decodeNextFrameHeader(data, NULL,
|
decode_next_frame_header(data, NULL,
|
||||||
replayGainInfo)) == DECODE_CONT
|
replay_gain_info_r)) == DECODE_CONT
|
||||||
&& decoder_get_command(decoder) == DECODE_COMMAND_NONE) ;
|
&& decoder_get_command(decoder) == DECODE_COMMAND_NONE) ;
|
||||||
if (ret == DECODE_BREAK || decoder_get_command(decoder) != DECODE_COMMAND_NONE)
|
if (ret == DECODE_BREAK || decoder_get_command(decoder) != DECODE_COMMAND_NONE)
|
||||||
break;
|
break;
|
||||||
else if (ret == DECODE_SKIP)
|
else if (ret == DECODE_SKIP)
|
||||||
skip = 1;
|
skip = 1;
|
||||||
if (data->muteFrame == MUTEFRAME_NONE) {
|
if (data->mute_frame == MUTEFRAME_NONE) {
|
||||||
while ((ret = decodeNextFrame(data)) == DECODE_CONT &&
|
while ((ret = decodeNextFrame(data)) == DECODE_CONT &&
|
||||||
decoder_get_command(decoder) == DECODE_COMMAND_NONE) ;
|
decoder_get_command(decoder) == DECODE_COMMAND_NONE) ;
|
||||||
if (ret == DECODE_BREAK ||
|
if (ret == DECODE_BREAK ||
|
||||||
@ -977,8 +975,7 @@ mp3Read(mp3DecodeData * data, ReplayGainInfo ** replayGainInfo)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void initAudioFormatFromMp3DecodeData(mp3DecodeData * data,
|
static void mp3_audio_format(struct mp3_data *data, struct audio_format *af)
|
||||||
struct audio_format * af)
|
|
||||||
{
|
{
|
||||||
af->bits = 24;
|
af->bits = 24;
|
||||||
af->sample_rate = (data->frame).header.samplerate;
|
af->sample_rate = (data->frame).header.samplerate;
|
||||||
@ -986,15 +983,15 @@ static void initAudioFormatFromMp3DecodeData(mp3DecodeData * data,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
mp3_decode(struct decoder * decoder, struct input_stream *inStream)
|
mp3_decode(struct decoder *decoder, struct input_stream *input_stream)
|
||||||
{
|
{
|
||||||
mp3DecodeData data;
|
struct mp3_data data;
|
||||||
struct tag *tag = NULL;
|
struct tag *tag = NULL;
|
||||||
ReplayGainInfo *replayGainInfo = NULL;
|
ReplayGainInfo *replay_gain_info = NULL;
|
||||||
struct audio_format audio_format;
|
struct audio_format audio_format;
|
||||||
|
|
||||||
if (openMp3FromInputStream(inStream, &data, decoder,
|
if (mp3_open(input_stream, &data, decoder,
|
||||||
&tag, &replayGainInfo) < 0) {
|
&tag, &replay_gain_info) < 0) {
|
||||||
if (decoder_get_command(decoder) == DECODE_COMMAND_NONE) {
|
if (decoder_get_command(decoder) == DECODE_COMMAND_NONE) {
|
||||||
ERROR
|
ERROR
|
||||||
("Input does not appear to be a mp3 bit stream.\n");
|
("Input does not appear to be a mp3 bit stream.\n");
|
||||||
@ -1003,67 +1000,69 @@ mp3_decode(struct decoder * decoder, struct input_stream *inStream)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
initAudioFormatFromMp3DecodeData(&data, &audio_format);
|
mp3_audio_format(&data, &audio_format);
|
||||||
|
|
||||||
if (inStream->meta_title) {
|
if (input_stream->meta_title) {
|
||||||
if (tag)
|
if (tag)
|
||||||
tag_free(tag);
|
tag_free(tag);
|
||||||
tag = tag_new();
|
tag = tag_new();
|
||||||
tag_add_item(tag, TAG_ITEM_TITLE, inStream->meta_title);
|
tag_add_item(tag, TAG_ITEM_TITLE, input_stream->meta_title);
|
||||||
free(inStream->meta_title);
|
free(input_stream->meta_title);
|
||||||
inStream->meta_title = NULL;
|
input_stream->meta_title = NULL;
|
||||||
if (inStream->meta_name) {
|
if (input_stream->meta_name) {
|
||||||
tag_add_item(tag, TAG_ITEM_NAME, inStream->meta_name);
|
tag_add_item(tag, TAG_ITEM_NAME,
|
||||||
|
input_stream->meta_name);
|
||||||
}
|
}
|
||||||
tag_free(tag);
|
tag_free(tag);
|
||||||
} else if (tag) {
|
} else if (tag) {
|
||||||
if (inStream->meta_name) {
|
if (input_stream->meta_name) {
|
||||||
tag_clear_items_by_type(tag, TAG_ITEM_NAME);
|
tag_clear_items_by_type(tag, TAG_ITEM_NAME);
|
||||||
tag_add_item(tag, TAG_ITEM_NAME, inStream->meta_name);
|
tag_add_item(tag, TAG_ITEM_NAME,
|
||||||
|
input_stream->meta_name);
|
||||||
}
|
}
|
||||||
tag_free(tag);
|
tag_free(tag);
|
||||||
} else if (inStream->meta_name) {
|
} else if (input_stream->meta_name) {
|
||||||
tag = tag_new();
|
tag = tag_new();
|
||||||
if (inStream->meta_name) {
|
if (input_stream->meta_name) {
|
||||||
tag_add_item(tag, TAG_ITEM_NAME, inStream->meta_name);
|
tag_add_item(tag, TAG_ITEM_NAME,
|
||||||
|
input_stream->meta_name);
|
||||||
}
|
}
|
||||||
tag_free(tag);
|
tag_free(tag);
|
||||||
}
|
}
|
||||||
|
|
||||||
decoder_initialized(decoder, &audio_format, data.totalTime);
|
decoder_initialized(decoder, &audio_format, data.total_time);
|
||||||
|
|
||||||
while (mp3Read(&data, &replayGainInfo) != DECODE_BREAK) ;
|
while (mp3_read(&data, &replay_gain_info) != DECODE_BREAK) ;
|
||||||
|
|
||||||
if (replayGainInfo)
|
if (replay_gain_info)
|
||||||
freeReplayGainInfo(replayGainInfo);
|
freeReplayGainInfo(replay_gain_info);
|
||||||
|
|
||||||
if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK &&
|
if (decoder_get_command(decoder) == DECODE_COMMAND_SEEK &&
|
||||||
data.muteFrame == MUTEFRAME_SEEK) {
|
data.mute_frame == MUTEFRAME_SEEK) {
|
||||||
decoder_clear(decoder);
|
decoder_clear(decoder);
|
||||||
decoder_command_finished(decoder);
|
decoder_command_finished(decoder);
|
||||||
}
|
}
|
||||||
|
|
||||||
decoder_flush(decoder);
|
decoder_flush(decoder);
|
||||||
mp3DecodeDataFinalize(&data);
|
mp3_data_finish(&data);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct tag *mp3_tagDup(char *file)
|
static struct tag *mp3_tag_dup(char *file)
|
||||||
{
|
{
|
||||||
struct tag *ret = NULL;
|
struct tag *ret = NULL;
|
||||||
int total_time;
|
int total_time;
|
||||||
|
|
||||||
ret = tag_id3_load(file);
|
ret = tag_id3_load(file);
|
||||||
|
|
||||||
total_time = getMp3TotalTime(file);
|
total_time = mp3_total_file_time(file);
|
||||||
|
|
||||||
if (total_time >= 0) {
|
if (total_time >= 0) {
|
||||||
if (!ret)
|
if (!ret)
|
||||||
ret = tag_new();
|
ret = tag_new();
|
||||||
ret->time = total_time;
|
ret->time = total_time;
|
||||||
} else {
|
} else {
|
||||||
DEBUG("mp3_tagDup: Failed to get total song time from: %s\n",
|
DEBUG("mp3_tag_dup: Failed to get total song time from: %s\n",
|
||||||
file);
|
file);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1071,14 +1070,14 @@ static struct tag *mp3_tagDup(char *file)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const char *mp3_suffixes[] = { "mp3", "mp2", NULL };
|
static const char *mp3_suffixes[] = { "mp3", "mp2", NULL };
|
||||||
static const char *mp3_mimeTypes[] = { "audio/mpeg", NULL };
|
static const char *mp3_mime_types[] = { "audio/mpeg", NULL };
|
||||||
|
|
||||||
struct decoder_plugin mp3Plugin = {
|
struct decoder_plugin mp3Plugin = {
|
||||||
.name = "mp3",
|
.name = "mp3",
|
||||||
.init = mp3_plugin_init,
|
.init = mp3_plugin_init,
|
||||||
.stream_decode = mp3_decode,
|
.stream_decode = mp3_decode,
|
||||||
.tag_dup = mp3_tagDup,
|
.tag_dup = mp3_tag_dup,
|
||||||
.stream_types = INPUT_PLUGIN_STREAM_FILE | INPUT_PLUGIN_STREAM_URL,
|
.stream_types = INPUT_PLUGIN_STREAM_FILE | INPUT_PLUGIN_STREAM_URL,
|
||||||
.suffixes = mp3_suffixes,
|
.suffixes = mp3_suffixes,
|
||||||
.mime_types = mp3_mimeTypes
|
.mime_types = mp3_mime_types
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user