2009-05-08 23:51:13 +02:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer 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 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2002-06-11 16:29:51 +02:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2002-11-12 13:19:23 +01:00
|
|
|
#include <unistd.h>
|
2002-12-14 18:56:35 +01:00
|
|
|
#include <string.h>
|
2002-06-11 16:29:51 +02:00
|
|
|
|
2005-11-18 15:39:25 +01:00
|
|
|
#include "m_option.h"
|
2002-06-11 16:29:51 +02:00
|
|
|
|
2007-03-15 19:36:36 +01:00
|
|
|
#include "stream/stream.h"
|
2002-06-11 16:29:51 +02:00
|
|
|
#include "demuxer.h"
|
|
|
|
#include "stheader.h"
|
2012-09-02 20:13:12 +02:00
|
|
|
#include "libaf/format.h"
|
2002-06-11 16:29:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
static int channels = 2;
|
|
|
|
static int samplerate = 44100;
|
2012-09-02 20:13:12 +02:00
|
|
|
static int format = AF_FORMAT_S16_NE;
|
2002-06-11 16:29:51 +02:00
|
|
|
|
2007-12-02 22:26:23 +01:00
|
|
|
const m_option_t demux_rawaudio_opts[] = {
|
2002-06-11 16:29:51 +02:00
|
|
|
{ "channels", &channels, CONF_TYPE_INT,CONF_RANGE,1,8, NULL },
|
|
|
|
{ "rate", &samplerate, CONF_TYPE_INT,CONF_RANGE,1000,8*48000, NULL },
|
2012-09-02 20:13:12 +02:00
|
|
|
{ "format", &format, CONF_TYPE_AFMT, 0, 0, 0, NULL },
|
2002-06-11 16:29:51 +02:00
|
|
|
{NULL, NULL, 0, 0, 0, 0, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-08-05 21:57:47 +02:00
|
|
|
static demuxer_t* demux_rawaudio_open(demuxer_t* demuxer) {
|
2002-06-11 16:29:51 +02:00
|
|
|
sh_audio_t* sh_audio;
|
|
|
|
WAVEFORMATEX* w;
|
|
|
|
|
2012-09-02 20:13:12 +02:00
|
|
|
if ((format & AF_FORMAT_SPECIAL_MASK) != 0)
|
|
|
|
return NULL;
|
|
|
|
|
2002-06-11 16:29:51 +02:00
|
|
|
sh_audio = new_sh_audio(demuxer,0);
|
2010-09-12 13:44:42 +02:00
|
|
|
sh_audio->wf = w = malloc(sizeof(*w));
|
2012-09-02 20:13:12 +02:00
|
|
|
// Not a WAVEFORMATEX format; just abuse it to pass the internal mplayer
|
|
|
|
// format to ad_pcm.c
|
|
|
|
w->wFormatTag = format;
|
|
|
|
sh_audio->format = MKTAG('M', 'P', 'a', 'f');
|
2002-06-11 16:29:51 +02:00
|
|
|
w->nChannels = sh_audio->channels = channels;
|
|
|
|
w->nSamplesPerSec = sh_audio->samplerate = samplerate;
|
2012-09-02 20:13:12 +02:00
|
|
|
sh_audio->samplesize = (af_fmt2bits(format) + 7) / 8;
|
|
|
|
w->nAvgBytesPerSec = samplerate * sh_audio->samplesize * channels;
|
|
|
|
w->nBlockAlign = channels * sh_audio->samplesize;
|
|
|
|
w->wBitsPerSample = 8 * sh_audio->samplesize;
|
2002-06-11 16:29:51 +02:00
|
|
|
w->cbSize = 0;
|
|
|
|
|
|
|
|
demuxer->movi_start = demuxer->stream->start_pos;
|
|
|
|
demuxer->movi_end = demuxer->stream->end_pos;
|
|
|
|
|
2008-04-05 16:11:48 +02:00
|
|
|
demuxer->audio->id = 0;
|
2002-06-11 16:29:51 +02:00
|
|
|
demuxer->audio->sh = sh_audio;
|
|
|
|
sh_audio->ds = demuxer->audio;
|
2010-01-15 20:01:03 +01:00
|
|
|
sh_audio->needs_parsing = 1;
|
2002-06-11 16:29:51 +02:00
|
|
|
|
2005-08-05 21:57:47 +02:00
|
|
|
return demuxer;
|
2002-06-11 16:29:51 +02:00
|
|
|
}
|
|
|
|
|
2005-08-05 21:57:47 +02:00
|
|
|
static int demux_rawaudio_fill_buffer(demuxer_t* demuxer, demux_stream_t *ds) {
|
2002-06-11 16:29:51 +02:00
|
|
|
sh_audio_t* sh_audio = demuxer->audio->sh;
|
|
|
|
int l = sh_audio->wf->nAvgBytesPerSec;
|
|
|
|
off_t spos = stream_tell(demuxer->stream);
|
|
|
|
demux_packet_t* dp;
|
|
|
|
|
|
|
|
if(demuxer->stream->eof)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
dp = new_demux_packet(l);
|
2003-03-27 21:27:50 +01:00
|
|
|
dp->pts = (spos - demuxer->movi_start) / (float)(sh_audio->wf->nAvgBytesPerSec);
|
|
|
|
dp->pos = (spos - demuxer->movi_start);
|
2002-06-11 16:29:51 +02:00
|
|
|
|
2003-09-20 14:50:25 +02:00
|
|
|
l = stream_read(demuxer->stream,dp->buffer,l);
|
|
|
|
resize_demux_packet(dp, l);
|
2002-06-11 16:29:51 +02:00
|
|
|
ds_add_packet(ds,dp);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-02-17 02:57:41 +01:00
|
|
|
static void demux_rawaudio_seek(demuxer_t *demuxer,float rel_seek_secs,float audio_delay,int flags){
|
2002-06-11 16:29:51 +02:00
|
|
|
stream_t* s = demuxer->stream;
|
|
|
|
sh_audio_t* sh_audio = demuxer->audio->sh;
|
|
|
|
off_t base,pos;
|
|
|
|
|
2008-01-29 16:11:38 +01:00
|
|
|
base = (flags & SEEK_ABSOLUTE) ? demuxer->movi_start : stream_tell(s);
|
|
|
|
if(flags & SEEK_FACTOR)
|
2002-06-11 16:29:51 +02:00
|
|
|
pos = base + ((demuxer->movi_end - demuxer->movi_start)*rel_seek_secs);
|
|
|
|
else
|
|
|
|
pos = base + (rel_seek_secs*sh_audio->i_bps);
|
|
|
|
|
|
|
|
pos -= (pos % (sh_audio->channels * sh_audio->samplesize) );
|
|
|
|
stream_seek(s,pos);
|
2002-12-22 18:22:48 +01:00
|
|
|
// printf("demux_rawaudio: streamtell=%d\n",(int)stream_tell(demuxer->stream));
|
2002-06-11 16:29:51 +02:00
|
|
|
}
|
2005-08-05 21:57:47 +02:00
|
|
|
|
2008-01-13 17:00:39 +01:00
|
|
|
const demuxer_desc_t demuxer_desc_rawaudio = {
|
2005-08-05 21:57:47 +02:00
|
|
|
"Raw audio demuxer",
|
|
|
|
"rawaudio",
|
|
|
|
"rawaudio",
|
|
|
|
"?",
|
|
|
|
"",
|
|
|
|
DEMUXER_TYPE_RAWAUDIO,
|
|
|
|
0, // no autodetect
|
|
|
|
NULL,
|
|
|
|
demux_rawaudio_fill_buffer,
|
|
|
|
demux_rawaudio_open,
|
|
|
|
NULL,
|
|
|
|
demux_rawaudio_seek,
|
|
|
|
};
|