2008-02-06 12:37:37 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 2008 Reimar Döffinger
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person
|
|
|
|
obtaining a copy of this software and associated documentation
|
|
|
|
files (the "Software"), to deal in the Software without
|
|
|
|
restriction, including without limitation the rights to use, copy,
|
|
|
|
modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be
|
|
|
|
included in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
|
|
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
DEALINGS IN THE SOFTWARE.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2008-05-09 11:56:36 +00:00
|
|
|
#include "libavutil/bswap.h"
|
|
|
|
#include "libavutil/avstring.h"
|
2012-04-07 21:39:30 +00:00
|
|
|
#include "libavutil/channel_layout.h"
|
2009-04-13 16:20:26 +00:00
|
|
|
#include "libavcodec/get_bits.h"
|
2008-05-09 11:56:36 +00:00
|
|
|
#include "libavcodec/bytestream.h"
|
2008-02-06 12:37:37 +00:00
|
|
|
#include "avformat.h"
|
2011-11-29 18:28:15 +00:00
|
|
|
#include "internal.h"
|
2008-02-06 12:37:37 +00:00
|
|
|
#include "oggdec.h"
|
|
|
|
|
2009-10-12 21:30:03 +00:00
|
|
|
struct speex_params {
|
2011-10-19 17:28:12 +00:00
|
|
|
int packet_size;
|
2009-10-12 21:30:03 +00:00
|
|
|
int final_packet_duration;
|
2010-03-11 07:17:46 +00:00
|
|
|
int seq;
|
2009-10-12 21:30:03 +00:00
|
|
|
};
|
|
|
|
|
2008-02-06 12:37:37 +00:00
|
|
|
static int speex_header(AVFormatContext *s, int idx) {
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
|
|
|
struct ogg_stream *os = ogg->streams + idx;
|
2010-03-11 07:17:46 +00:00
|
|
|
struct speex_params *spxp = os->private;
|
2008-02-06 12:37:37 +00:00
|
|
|
AVStream *st = s->streams[idx];
|
|
|
|
uint8_t *p = os->buf + os->pstart;
|
|
|
|
|
2010-03-11 07:17:46 +00:00
|
|
|
if (!spxp) {
|
|
|
|
spxp = av_mallocz(sizeof(*spxp));
|
|
|
|
os->private = spxp;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (spxp->seq > 1)
|
2009-03-21 08:22:09 +00:00
|
|
|
return 0;
|
2008-02-06 12:37:37 +00:00
|
|
|
|
2010-03-11 07:17:46 +00:00
|
|
|
if (spxp->seq == 0) {
|
2009-08-28 00:44:54 +00:00
|
|
|
int frames_per_packet;
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2012-08-05 09:11:04 +00:00
|
|
|
st->codec->codec_id = AV_CODEC_ID_SPEEX;
|
2008-02-06 12:37:37 +00:00
|
|
|
|
2012-12-12 10:20:55 +00:00
|
|
|
if (os->psize < 68) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "speex packet too small\n");
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
|
2009-03-21 08:22:36 +00:00
|
|
|
st->codec->sample_rate = AV_RL32(p + 36);
|
|
|
|
st->codec->channels = AV_RL32(p + 48);
|
2012-04-07 21:39:30 +00:00
|
|
|
if (st->codec->channels < 1 || st->codec->channels > 2) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "invalid channel count. Speex must be mono or stereo.\n");
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
|
|
|
st->codec->channel_layout = st->codec->channels == 1 ? AV_CH_LAYOUT_MONO :
|
|
|
|
AV_CH_LAYOUT_STEREO;
|
2009-08-28 00:44:54 +00:00
|
|
|
|
2011-10-19 17:28:12 +00:00
|
|
|
spxp->packet_size = AV_RL32(p + 56);
|
|
|
|
frames_per_packet = AV_RL32(p + 64);
|
2009-08-28 00:44:54 +00:00
|
|
|
if (frames_per_packet)
|
2011-10-19 17:28:12 +00:00
|
|
|
spxp->packet_size *= frames_per_packet;
|
2009-08-28 00:44:54 +00:00
|
|
|
|
2013-10-20 14:57:45 +00:00
|
|
|
if (ff_alloc_extradata(st->codec, os->psize) < 0)
|
|
|
|
return AVERROR(ENOMEM);
|
2009-03-21 08:22:36 +00:00
|
|
|
memcpy(st->codec->extradata, p, st->codec->extradata_size);
|
2008-02-06 12:37:37 +00:00
|
|
|
|
2011-11-29 18:28:15 +00:00
|
|
|
avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
|
2009-03-21 08:22:09 +00:00
|
|
|
} else
|
2014-08-12 21:03:55 +00:00
|
|
|
ff_vorbis_stream_comment(s, st, p, os->psize);
|
2008-02-06 12:37:37 +00:00
|
|
|
|
2010-03-11 07:17:46 +00:00
|
|
|
spxp->seq++;
|
2009-03-21 08:22:09 +00:00
|
|
|
return 1;
|
2008-02-06 12:37:37 +00:00
|
|
|
}
|
|
|
|
|
2009-10-12 21:30:03 +00:00
|
|
|
static int ogg_page_packets(struct ogg_stream *os)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int packets = 0;
|
|
|
|
for (i = 0; i < os->nsegs; i++)
|
|
|
|
if (os->segments[i] < 255)
|
|
|
|
packets++;
|
|
|
|
return packets;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int speex_packet(AVFormatContext *s, int idx)
|
|
|
|
{
|
|
|
|
struct ogg *ogg = s->priv_data;
|
|
|
|
struct ogg_stream *os = ogg->streams + idx;
|
|
|
|
struct speex_params *spxp = os->private;
|
2011-10-19 17:28:12 +00:00
|
|
|
int packet_size = spxp->packet_size;
|
2009-10-12 21:30:03 +00:00
|
|
|
|
2009-12-12 20:18:43 +00:00
|
|
|
if (os->flags & OGG_FLAG_EOS && os->lastpts != AV_NOPTS_VALUE &&
|
|
|
|
os->granule > 0) {
|
2009-10-12 21:30:03 +00:00
|
|
|
/* first packet of final page. we have to calculate the final packet
|
|
|
|
duration here because it is the only place we know the next-to-last
|
|
|
|
granule position. */
|
2009-12-12 20:18:43 +00:00
|
|
|
spxp->final_packet_duration = os->granule - os->lastpts -
|
2009-10-12 21:30:03 +00:00
|
|
|
packet_size * (ogg_page_packets(os) - 1);
|
|
|
|
}
|
|
|
|
|
2009-12-12 20:18:43 +00:00
|
|
|
if (!os->lastpts && os->granule > 0)
|
2009-10-12 21:30:03 +00:00
|
|
|
/* first packet */
|
2011-10-19 17:28:12 +00:00
|
|
|
os->lastpts = os->lastdts = os->granule - packet_size *
|
|
|
|
ogg_page_packets(os);
|
|
|
|
if (os->flags & OGG_FLAG_EOS && os->segp == os->nsegs &&
|
|
|
|
spxp->final_packet_duration)
|
2009-10-12 21:30:03 +00:00
|
|
|
/* final packet */
|
|
|
|
os->pduration = spxp->final_packet_duration;
|
|
|
|
else
|
|
|
|
os->pduration = packet_size;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-06 01:50:56 +00:00
|
|
|
const struct ogg_codec ff_speex_codec = {
|
2008-02-06 12:37:37 +00:00
|
|
|
.magic = "Speex ",
|
|
|
|
.magicsize = 8,
|
2009-10-12 21:30:03 +00:00
|
|
|
.header = speex_header,
|
2012-09-19 23:01:43 +00:00
|
|
|
.packet = speex_packet,
|
|
|
|
.nb_header = 2,
|
2008-02-06 12:37:37 +00:00
|
|
|
};
|