2005-04-09 15:32:58 +00:00
|
|
|
/*
|
|
|
|
* Ogg bitstream support
|
|
|
|
* Luca Barbato <lu_zero@gentoo.org>
|
|
|
|
* Based on tcvp implementation
|
2005-12-17 18:14:38 +00:00
|
|
|
*
|
2005-04-09 15:32:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
Copyright (C) 2005 Michael Ahlberg, Måns Rullgård
|
|
|
|
|
|
|
|
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 <stdio.h>
|
2007-11-07 20:22:32 +00:00
|
|
|
#include "oggdec.h"
|
2005-04-09 15:32:58 +00:00
|
|
|
#include "avformat.h"
|
2010-03-20 13:36:43 +00:00
|
|
|
#include "vorbiscomment.h"
|
2005-04-09 15:32:58 +00:00
|
|
|
|
|
|
|
#define MAX_PAGE_SIZE 65307
|
|
|
|
#define DECODER_BUFFER_SIZE MAX_PAGE_SIZE
|
|
|
|
|
2008-11-06 01:50:56 +00:00
|
|
|
static const struct ogg_codec * const ogg_codecs[] = {
|
2010-03-11 07:17:40 +00:00
|
|
|
&ff_skeleton_codec,
|
2010-01-11 00:31:52 +00:00
|
|
|
&ff_dirac_codec,
|
2008-08-24 17:37:43 +00:00
|
|
|
&ff_speex_codec,
|
|
|
|
&ff_vorbis_codec,
|
|
|
|
&ff_theora_codec,
|
|
|
|
&ff_flac_codec,
|
2010-01-11 00:31:52 +00:00
|
|
|
&ff_old_dirac_codec,
|
2008-08-24 17:37:43 +00:00
|
|
|
&ff_old_flac_codec,
|
|
|
|
&ff_ogm_video_codec,
|
|
|
|
&ff_ogm_audio_codec,
|
|
|
|
&ff_ogm_text_codec,
|
|
|
|
&ff_ogm_old_codec,
|
2005-04-09 15:32:58 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
//FIXME We could avoid some structure duplication
|
|
|
|
static int
|
|
|
|
ogg_save (AVFormatContext * s)
|
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
|
|
|
struct ogg_state *ost =
|
2005-04-09 23:27:48 +00:00
|
|
|
av_malloc(sizeof (*ost) + (ogg->nstreams-1) * sizeof (*ogg->streams));
|
2005-04-09 15:32:58 +00:00
|
|
|
int i;
|
2007-11-21 07:41:00 +00:00
|
|
|
ost->pos = url_ftell (s->pb);
|
2005-04-09 15:32:58 +00:00
|
|
|
ost->curidx = ogg->curidx;
|
|
|
|
ost->next = ogg->state;
|
2007-01-15 22:05:22 +00:00
|
|
|
ost->nstreams = ogg->nstreams;
|
2005-04-09 15:32:58 +00:00
|
|
|
memcpy(ost->streams, ogg->streams, ogg->nstreams * sizeof(*ogg->streams));
|
|
|
|
|
|
|
|
for (i = 0; i < ogg->nstreams; i++){
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg_stream *os = ogg->streams + i;
|
2005-04-09 15:32:58 +00:00
|
|
|
os->buf = av_malloc (os->bufsize);
|
|
|
|
memset (os->buf, 0, os->bufsize);
|
|
|
|
memcpy (os->buf, ost->streams[i].buf, os->bufpos);
|
|
|
|
}
|
|
|
|
|
|
|
|
ogg->state = ost;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ogg_restore (AVFormatContext * s, int discard)
|
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *bc = s->pb;
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg_state *ost = ogg->state;
|
2005-04-09 15:32:58 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!ost)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ogg->state = ost->next;
|
|
|
|
|
|
|
|
if (!discard){
|
|
|
|
for (i = 0; i < ogg->nstreams; i++)
|
|
|
|
av_free (ogg->streams[i].buf);
|
|
|
|
|
|
|
|
url_fseek (bc, ost->pos, SEEK_SET);
|
|
|
|
ogg->curidx = ost->curidx;
|
2007-01-15 22:05:22 +00:00
|
|
|
ogg->nstreams = ost->nstreams;
|
|
|
|
memcpy(ogg->streams, ost->streams,
|
|
|
|
ost->nstreams * sizeof(*ogg->streams));
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
av_free (ost);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2008-11-06 01:50:56 +00:00
|
|
|
ogg_reset (struct ogg * ogg)
|
2005-04-09 15:32:58 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ogg->nstreams; i++){
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg_stream *os = ogg->streams + i;
|
2005-04-09 15:32:58 +00:00
|
|
|
os->bufpos = 0;
|
|
|
|
os->pstart = 0;
|
|
|
|
os->psize = 0;
|
|
|
|
os->granule = -1;
|
2009-12-12 20:18:43 +00:00
|
|
|
os->lastpts = AV_NOPTS_VALUE;
|
2010-01-11 05:51:09 +00:00
|
|
|
os->lastdts = AV_NOPTS_VALUE;
|
2010-03-11 07:17:24 +00:00
|
|
|
os->sync_pos = -1;
|
|
|
|
os->page_pos = 0;
|
2005-04-09 15:32:58 +00:00
|
|
|
os->nsegs = 0;
|
|
|
|
os->segp = 0;
|
2010-02-08 10:13:03 +00:00
|
|
|
os->incomplete = 0;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ogg->curidx = -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-11-06 01:50:56 +00:00
|
|
|
static const struct ogg_codec *
|
2005-04-10 17:25:54 +00:00
|
|
|
ogg_find_codec (uint8_t * buf, int size)
|
2005-04-09 15:32:58 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; ogg_codecs[i]; i++)
|
|
|
|
if (size >= ogg_codecs[i]->magicsize &&
|
|
|
|
!memcmp (buf, ogg_codecs[i]->magic, ogg_codecs[i]->magicsize))
|
|
|
|
return ogg_codecs[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ogg_new_stream (AVFormatContext * s, uint32_t serial)
|
|
|
|
{
|
|
|
|
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
2005-04-09 15:32:58 +00:00
|
|
|
int idx = ogg->nstreams++;
|
|
|
|
AVStream *st;
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg_stream *os;
|
2005-04-09 15:32:58 +00:00
|
|
|
|
|
|
|
ogg->streams = av_realloc (ogg->streams,
|
|
|
|
ogg->nstreams * sizeof (*ogg->streams));
|
|
|
|
memset (ogg->streams + idx, 0, sizeof (*ogg->streams));
|
|
|
|
os = ogg->streams + idx;
|
|
|
|
os->serial = serial;
|
|
|
|
os->bufsize = DECODER_BUFFER_SIZE;
|
2006-06-25 12:23:54 +00:00
|
|
|
os->buf = av_malloc(os->bufsize);
|
2005-04-09 15:32:58 +00:00
|
|
|
os->header = -1;
|
|
|
|
|
|
|
|
st = av_new_stream (s, idx);
|
|
|
|
if (!st)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2005-04-09 15:32:58 +00:00
|
|
|
|
|
|
|
av_set_pts_info(st, 64, 1, 1000000);
|
|
|
|
|
|
|
|
return idx;
|
|
|
|
}
|
|
|
|
|
2006-06-25 00:41:13 +00:00
|
|
|
static int
|
2008-11-06 01:50:56 +00:00
|
|
|
ogg_new_buf(struct ogg *ogg, int idx)
|
2006-06-25 00:41:13 +00:00
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg_stream *os = ogg->streams + idx;
|
2006-06-25 12:46:01 +00:00
|
|
|
uint8_t *nb = av_malloc(os->bufsize);
|
2006-06-25 00:41:13 +00:00
|
|
|
int size = os->bufpos - os->pstart;
|
|
|
|
if(os->buf){
|
|
|
|
memcpy(nb, os->buf + os->pstart, size);
|
|
|
|
av_free(os->buf);
|
|
|
|
}
|
|
|
|
os->buf = nb;
|
|
|
|
os->bufpos = size;
|
|
|
|
os->pstart = 0;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-09 15:32:58 +00:00
|
|
|
static int
|
|
|
|
ogg_read_page (AVFormatContext * s, int *str)
|
|
|
|
{
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *bc = s->pb;
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
|
|
|
struct ogg_stream *os;
|
2005-04-09 15:32:58 +00:00
|
|
|
int i = 0;
|
|
|
|
int flags, nsegs;
|
|
|
|
uint64_t gp;
|
|
|
|
uint32_t serial;
|
|
|
|
uint32_t seq;
|
|
|
|
uint32_t crc;
|
|
|
|
int size, idx;
|
2006-09-27 19:47:39 +00:00
|
|
|
uint8_t sync[4];
|
2005-04-09 15:32:58 +00:00
|
|
|
int sp = 0;
|
|
|
|
|
|
|
|
if (get_buffer (bc, sync, 4) < 4)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
do{
|
|
|
|
int c;
|
|
|
|
|
|
|
|
if (sync[sp & 3] == 'O' &&
|
|
|
|
sync[(sp + 1) & 3] == 'g' &&
|
|
|
|
sync[(sp + 2) & 3] == 'g' && sync[(sp + 3) & 3] == 'S')
|
|
|
|
break;
|
|
|
|
|
|
|
|
c = url_fgetc (bc);
|
|
|
|
if (c < 0)
|
|
|
|
return -1;
|
|
|
|
sync[sp++ & 3] = c;
|
|
|
|
}while (i++ < MAX_PAGE_SIZE);
|
|
|
|
|
|
|
|
if (i >= MAX_PAGE_SIZE){
|
|
|
|
av_log (s, AV_LOG_INFO, "ogg, can't find sync word\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (url_fgetc (bc) != 0) /* version */
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
flags = url_fgetc (bc);
|
|
|
|
gp = get_le64 (bc);
|
|
|
|
serial = get_le32 (bc);
|
|
|
|
seq = get_le32 (bc);
|
|
|
|
crc = get_le32 (bc);
|
|
|
|
nsegs = url_fgetc (bc);
|
|
|
|
|
|
|
|
idx = ogg_find_stream (ogg, serial);
|
|
|
|
if (idx < 0){
|
|
|
|
idx = ogg_new_stream (s, serial);
|
|
|
|
if (idx < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
os = ogg->streams + idx;
|
2010-03-11 07:17:24 +00:00
|
|
|
os->page_pos = url_ftell(bc) - 27;
|
2005-04-09 15:32:58 +00:00
|
|
|
|
2006-06-25 12:23:54 +00:00
|
|
|
if(os->psize > 0)
|
2006-06-25 00:41:13 +00:00
|
|
|
ogg_new_buf(ogg, idx);
|
|
|
|
|
2005-04-09 15:32:58 +00:00
|
|
|
if (get_buffer (bc, os->segments, nsegs) < nsegs)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
os->nsegs = nsegs;
|
|
|
|
os->segp = 0;
|
|
|
|
|
|
|
|
size = 0;
|
|
|
|
for (i = 0; i < nsegs; i++)
|
|
|
|
size += os->segments[i];
|
|
|
|
|
2010-02-08 10:13:03 +00:00
|
|
|
if (flags & OGG_FLAG_CONT || os->incomplete){
|
2005-04-09 15:32:58 +00:00
|
|
|
if (!os->psize){
|
|
|
|
while (os->segp < os->nsegs){
|
|
|
|
int seg = os->segments[os->segp++];
|
|
|
|
os->pstart += seg;
|
|
|
|
if (seg < 255)
|
2009-02-14 13:44:21 +00:00
|
|
|
break;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
2010-03-11 07:17:24 +00:00
|
|
|
os->sync_pos = os->page_pos;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
}else{
|
2009-02-14 13:44:21 +00:00
|
|
|
os->psize = 0;
|
2010-03-11 07:17:24 +00:00
|
|
|
os->sync_pos = os->page_pos;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (os->bufsize - os->bufpos < size){
|
2005-04-10 17:25:54 +00:00
|
|
|
uint8_t *nb = av_malloc (os->bufsize *= 2);
|
2005-04-09 15:32:58 +00:00
|
|
|
memcpy (nb, os->buf, os->bufpos);
|
|
|
|
av_free (os->buf);
|
|
|
|
os->buf = nb;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (get_buffer (bc, os->buf + os->bufpos, size) < size)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
os->bufpos += size;
|
|
|
|
os->granule = gp;
|
|
|
|
os->flags = flags;
|
|
|
|
|
|
|
|
if (str)
|
|
|
|
*str = idx;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-03-11 07:17:24 +00:00
|
|
|
ogg_packet (AVFormatContext * s, int *str, int *dstart, int *dsize, int64_t *fpos)
|
2005-04-09 15:32:58 +00:00
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
2009-12-12 20:18:43 +00:00
|
|
|
int idx, i;
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg_stream *os;
|
2005-04-09 15:32:58 +00:00
|
|
|
int complete = 0;
|
|
|
|
int segp = 0, psize = 0;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
av_log (s, AV_LOG_DEBUG, "ogg_packet: curidx=%i\n", ogg->curidx);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
do{
|
|
|
|
idx = ogg->curidx;
|
|
|
|
|
|
|
|
while (idx < 0){
|
|
|
|
if (ogg_read_page (s, &idx) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
os = ogg->streams + idx;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
av_log (s, AV_LOG_DEBUG,
|
|
|
|
"ogg_packet: idx=%d pstart=%d psize=%d segp=%d nsegs=%d\n",
|
|
|
|
idx, os->pstart, os->psize, os->segp, os->nsegs);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!os->codec){
|
|
|
|
if (os->header < 0){
|
|
|
|
os->codec = ogg_find_codec (os->buf, os->bufpos);
|
|
|
|
if (!os->codec){
|
|
|
|
os->header = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
segp = os->segp;
|
|
|
|
psize = os->psize;
|
|
|
|
|
|
|
|
while (os->segp < os->nsegs){
|
|
|
|
int ss = os->segments[os->segp++];
|
|
|
|
os->psize += ss;
|
|
|
|
if (ss < 255){
|
|
|
|
complete = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!complete && os->segp == os->nsegs){
|
|
|
|
ogg->curidx = -1;
|
2010-02-08 10:13:03 +00:00
|
|
|
os->incomplete = 1;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
}while (!complete);
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
av_log (s, AV_LOG_DEBUG,
|
|
|
|
"ogg_packet: idx %i, frame size %i, start %i\n",
|
|
|
|
idx, os->psize, os->pstart);
|
|
|
|
#endif
|
|
|
|
|
2010-04-16 12:21:38 +00:00
|
|
|
if (os->granule == -1)
|
2010-06-09 08:59:41 +00:00
|
|
|
av_log(s, AV_LOG_WARNING, "Page at %"PRId64" is missing granule\n", os->page_pos);
|
2010-04-16 12:21:38 +00:00
|
|
|
|
2005-04-09 15:32:58 +00:00
|
|
|
ogg->curidx = idx;
|
2010-02-08 10:13:03 +00:00
|
|
|
os->incomplete = 0;
|
2005-04-09 15:32:58 +00:00
|
|
|
|
2010-03-12 05:17:01 +00:00
|
|
|
if (os->header) {
|
|
|
|
os->header = os->codec->header (s, idx);
|
|
|
|
if (!os->header){
|
2009-02-14 13:44:21 +00:00
|
|
|
os->segp = segp;
|
|
|
|
os->psize = psize;
|
2010-03-12 05:17:01 +00:00
|
|
|
if (!ogg->headers)
|
|
|
|
s->data_offset = os->sync_pos;
|
2009-02-14 13:44:21 +00:00
|
|
|
ogg->headers = 1;
|
2005-04-09 15:32:58 +00:00
|
|
|
}else{
|
2009-02-14 13:44:21 +00:00
|
|
|
os->pstart += os->psize;
|
|
|
|
os->psize = 0;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
2010-03-12 05:17:01 +00:00
|
|
|
} else {
|
2007-11-11 21:56:18 +00:00
|
|
|
os->pflags = 0;
|
2009-10-12 21:30:03 +00:00
|
|
|
os->pduration = 0;
|
2005-04-09 15:32:58 +00:00
|
|
|
if (os->codec && os->codec->packet)
|
|
|
|
os->codec->packet (s, idx);
|
|
|
|
if (str)
|
|
|
|
*str = idx;
|
2006-06-25 00:41:13 +00:00
|
|
|
if (dstart)
|
|
|
|
*dstart = os->pstart;
|
|
|
|
if (dsize)
|
|
|
|
*dsize = os->psize;
|
2010-03-11 07:17:24 +00:00
|
|
|
if (fpos)
|
|
|
|
*fpos = os->sync_pos;
|
2006-06-25 00:41:13 +00:00
|
|
|
os->pstart += os->psize;
|
|
|
|
os->psize = 0;
|
2010-03-11 07:17:24 +00:00
|
|
|
os->sync_pos = os->page_pos;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
2009-12-12 20:18:43 +00:00
|
|
|
// determine whether there are more complete packets in this page
|
|
|
|
// if not, the page's granule will apply to this packet
|
|
|
|
os->page_end = 1;
|
|
|
|
for (i = os->segp; i < os->nsegs; i++)
|
|
|
|
if (os->segments[i] < 255) {
|
|
|
|
os->page_end = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-04-09 15:32:58 +00:00
|
|
|
if (os->segp == os->nsegs)
|
|
|
|
ogg->curidx = -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ogg_get_headers (AVFormatContext * s)
|
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
2005-04-09 15:32:58 +00:00
|
|
|
|
|
|
|
do{
|
2010-03-11 07:17:24 +00:00
|
|
|
if (ogg_packet (s, NULL, NULL, NULL, NULL) < 0)
|
2005-04-09 15:32:58 +00:00
|
|
|
return -1;
|
|
|
|
}while (!ogg->headers);
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
av_log (s, AV_LOG_DEBUG, "found headers\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ogg_get_length (AVFormatContext * s)
|
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
2010-04-16 12:21:35 +00:00
|
|
|
int i;
|
2008-10-03 10:16:29 +00:00
|
|
|
int64_t size, end;
|
2005-05-19 21:03:03 +00:00
|
|
|
|
2007-12-19 23:26:18 +00:00
|
|
|
if(url_is_streamed(s->pb))
|
2005-05-19 21:03:03 +00:00
|
|
|
return 0;
|
2005-04-09 15:32:58 +00:00
|
|
|
|
|
|
|
// already set
|
|
|
|
if (s->duration != AV_NOPTS_VALUE)
|
|
|
|
return 0;
|
|
|
|
|
2007-11-21 07:41:00 +00:00
|
|
|
size = url_fsize(s->pb);
|
2006-06-04 15:06:18 +00:00
|
|
|
if(size < 0)
|
|
|
|
return 0;
|
2009-04-15 06:41:08 +00:00
|
|
|
end = size > MAX_PAGE_SIZE? size - MAX_PAGE_SIZE: 0;
|
2006-06-04 15:06:18 +00:00
|
|
|
|
2005-04-09 15:32:58 +00:00
|
|
|
ogg_save (s);
|
2007-11-21 07:41:00 +00:00
|
|
|
url_fseek (s->pb, end, SEEK_SET);
|
2005-04-09 15:32:58 +00:00
|
|
|
|
|
|
|
while (!ogg_read_page (s, &i)){
|
2007-01-15 22:45:50 +00:00
|
|
|
if (ogg->streams[i].granule != -1 && ogg->streams[i].granule != 0 &&
|
2010-04-16 12:21:35 +00:00
|
|
|
ogg->streams[i].codec) {
|
|
|
|
s->streams[i]->duration =
|
|
|
|
ogg_gptopts (s, i, ogg->streams[i].granule, NULL);
|
|
|
|
if (s->streams[i]->start_time != AV_NOPTS_VALUE)
|
|
|
|
s->streams[i]->duration -= s->streams[i]->start_time;
|
|
|
|
}
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ogg_restore (s, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
ogg_read_header (AVFormatContext * s, AVFormatParameters * ap)
|
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
2009-09-30 09:46:48 +00:00
|
|
|
int i;
|
2005-04-09 15:32:58 +00:00
|
|
|
ogg->curidx = -1;
|
|
|
|
//linear headers seek from start
|
|
|
|
if (ogg_get_headers (s) < 0){
|
2009-02-14 13:44:21 +00:00
|
|
|
return -1;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
2009-09-30 09:46:48 +00:00
|
|
|
for (i = 0; i < ogg->nstreams; i++)
|
|
|
|
if (ogg->streams[i].header < 0)
|
|
|
|
ogg->streams[i].codec = NULL;
|
|
|
|
|
2005-04-09 15:32:58 +00:00
|
|
|
//linear granulepos seek from end
|
|
|
|
ogg_get_length (s);
|
|
|
|
|
|
|
|
//fill the extradata in the per codec callbacks
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-11 07:17:53 +00:00
|
|
|
static int64_t ogg_calc_pts(AVFormatContext *s, int idx, int64_t *dts)
|
|
|
|
{
|
|
|
|
struct ogg *ogg = s->priv_data;
|
|
|
|
struct ogg_stream *os = ogg->streams + idx;
|
|
|
|
int64_t pts = AV_NOPTS_VALUE;
|
|
|
|
|
|
|
|
if (dts)
|
|
|
|
*dts = AV_NOPTS_VALUE;
|
|
|
|
|
|
|
|
if (os->lastpts != AV_NOPTS_VALUE) {
|
|
|
|
pts = os->lastpts;
|
|
|
|
os->lastpts = AV_NOPTS_VALUE;
|
|
|
|
}
|
|
|
|
if (os->lastdts != AV_NOPTS_VALUE) {
|
|
|
|
if (dts)
|
|
|
|
*dts = os->lastdts;
|
|
|
|
os->lastdts = AV_NOPTS_VALUE;
|
|
|
|
}
|
|
|
|
if (os->page_end) {
|
|
|
|
if (os->granule != -1LL) {
|
|
|
|
if (os->codec && os->codec->granule_is_start)
|
|
|
|
pts = ogg_gptopts(s, idx, os->granule, dts);
|
|
|
|
else
|
|
|
|
os->lastpts = ogg_gptopts(s, idx, os->granule, &os->lastdts);
|
|
|
|
os->granule = -1LL;
|
2010-04-16 12:21:38 +00:00
|
|
|
}
|
2010-03-11 07:17:53 +00:00
|
|
|
}
|
|
|
|
return pts;
|
|
|
|
}
|
2005-04-09 15:32:58 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
ogg_read_packet (AVFormatContext * s, AVPacket * pkt)
|
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg;
|
|
|
|
struct ogg_stream *os;
|
2005-04-09 15:32:58 +00:00
|
|
|
int idx = -1;
|
2006-06-25 00:41:13 +00:00
|
|
|
int pstart, psize;
|
2010-03-11 07:18:00 +00:00
|
|
|
int64_t fpos, pts, dts;
|
2005-04-09 15:32:58 +00:00
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
//Get an ogg packet
|
2010-03-11 07:18:00 +00:00
|
|
|
retry:
|
2005-04-09 15:32:58 +00:00
|
|
|
do{
|
2010-03-11 07:17:24 +00:00
|
|
|
if (ogg_packet (s, &idx, &pstart, &psize, &fpos) < 0)
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2005-04-09 15:32:58 +00:00
|
|
|
}while (idx < 0 || !s->streams[idx]);
|
|
|
|
|
|
|
|
ogg = s->priv_data;
|
|
|
|
os = ogg->streams + idx;
|
|
|
|
|
2010-03-11 07:18:00 +00:00
|
|
|
// pflags might not be set until after this
|
|
|
|
pts = ogg_calc_pts(s, idx, &dts);
|
|
|
|
|
2010-03-31 12:29:58 +00:00
|
|
|
if (os->keyframe_seek && !(os->pflags & AV_PKT_FLAG_KEY))
|
2010-03-11 07:18:00 +00:00
|
|
|
goto retry;
|
|
|
|
os->keyframe_seek = 0;
|
|
|
|
|
2005-04-09 15:32:58 +00:00
|
|
|
//Alloc a pkt
|
2006-06-25 00:41:13 +00:00
|
|
|
if (av_new_packet (pkt, psize) < 0)
|
2007-07-19 15:23:32 +00:00
|
|
|
return AVERROR(EIO);
|
2005-04-09 15:32:58 +00:00
|
|
|
pkt->stream_index = idx;
|
2006-06-25 00:41:13 +00:00
|
|
|
memcpy (pkt->data, os->buf + pstart, psize);
|
2009-12-12 20:18:43 +00:00
|
|
|
|
2010-03-11 07:18:00 +00:00
|
|
|
pkt->pts = pts;
|
|
|
|
pkt->dts = dts;
|
2007-11-11 21:56:18 +00:00
|
|
|
pkt->flags = os->pflags;
|
2009-10-12 21:30:03 +00:00
|
|
|
pkt->duration = os->pduration;
|
2010-03-11 07:17:24 +00:00
|
|
|
pkt->pos = fpos;
|
2007-11-11 21:56:18 +00:00
|
|
|
|
2006-06-25 00:41:13 +00:00
|
|
|
return psize;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
ogg_read_close (AVFormatContext * s)
|
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
2005-04-09 15:32:58 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ogg->nstreams; i++){
|
|
|
|
av_free (ogg->streams[i].buf);
|
2005-05-11 16:38:34 +00:00
|
|
|
av_free (ogg->streams[i].private);
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
av_free (ogg->streams);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int64_t
|
|
|
|
ogg_read_timestamp (AVFormatContext * s, int stream_index, int64_t * pos_arg,
|
|
|
|
int64_t pos_limit)
|
|
|
|
{
|
2008-11-06 01:50:56 +00:00
|
|
|
struct ogg *ogg = s->priv_data;
|
2010-03-11 07:18:00 +00:00
|
|
|
struct ogg_stream *os = ogg->streams + stream_index;
|
2007-11-21 07:41:00 +00:00
|
|
|
ByteIOContext *bc = s->pb;
|
2007-10-10 10:33:07 +00:00
|
|
|
int64_t pts = AV_NOPTS_VALUE;
|
|
|
|
int i;
|
|
|
|
url_fseek(bc, *pos_arg, SEEK_SET);
|
2010-03-11 07:17:56 +00:00
|
|
|
ogg_reset(ogg);
|
|
|
|
|
|
|
|
while (url_ftell(bc) < pos_limit && !ogg_packet(s, &i, NULL, NULL, pos_arg)) {
|
|
|
|
if (i == stream_index) {
|
|
|
|
pts = ogg_calc_pts(s, i, NULL);
|
2010-03-31 12:29:58 +00:00
|
|
|
if (os->keyframe_seek && !(os->pflags & AV_PKT_FLAG_KEY))
|
2010-03-11 07:18:00 +00:00
|
|
|
pts = AV_NOPTS_VALUE;
|
2007-10-10 10:33:07 +00:00
|
|
|
}
|
2010-03-11 07:17:56 +00:00
|
|
|
if (pts != AV_NOPTS_VALUE)
|
|
|
|
break;
|
2007-10-10 10:33:07 +00:00
|
|
|
}
|
|
|
|
ogg_reset(ogg);
|
|
|
|
return pts;
|
2005-04-09 15:32:58 +00:00
|
|
|
}
|
|
|
|
|
2010-03-11 07:18:00 +00:00
|
|
|
static int ogg_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
|
|
|
|
{
|
|
|
|
struct ogg *ogg = s->priv_data;
|
|
|
|
struct ogg_stream *os = ogg->streams + stream_index;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
// Try seeking to a keyframe first. If this fails (very possible),
|
|
|
|
// av_seek_frame will fall back to ignoring keyframes
|
2010-03-30 23:30:55 +00:00
|
|
|
if (s->streams[stream_index]->codec->codec_type == AVMEDIA_TYPE_VIDEO
|
2010-03-11 07:18:00 +00:00
|
|
|
&& !(flags & AVSEEK_FLAG_ANY))
|
|
|
|
os->keyframe_seek = 1;
|
|
|
|
|
|
|
|
ret = av_seek_frame_binary(s, stream_index, timestamp, flags);
|
|
|
|
if (ret < 0)
|
|
|
|
os->keyframe_seek = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2005-12-05 00:15:51 +00:00
|
|
|
static int ogg_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
if (p->buf[0] == 'O' && p->buf[1] == 'g' &&
|
|
|
|
p->buf[2] == 'g' && p->buf[3] == 'S' &&
|
|
|
|
p->buf[4] == 0x0 && p->buf[5] <= 0x7 )
|
|
|
|
return AVPROBE_SCORE_MAX;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:14:37 +00:00
|
|
|
AVInputFormat ogg_demuxer = {
|
2005-04-09 15:32:58 +00:00
|
|
|
"ogg",
|
2008-06-03 16:20:54 +00:00
|
|
|
NULL_IF_CONFIG_SMALL("Ogg"),
|
2008-11-06 01:50:56 +00:00
|
|
|
sizeof (struct ogg),
|
2005-12-05 00:15:51 +00:00
|
|
|
ogg_probe,
|
2005-04-09 15:32:58 +00:00
|
|
|
ogg_read_header,
|
|
|
|
ogg_read_packet,
|
|
|
|
ogg_read_close,
|
2010-03-11 07:18:00 +00:00
|
|
|
ogg_read_seek,
|
2007-10-10 10:33:07 +00:00
|
|
|
ogg_read_timestamp,
|
2005-04-09 15:32:58 +00:00
|
|
|
.extensions = "ogg",
|
2009-06-13 22:45:58 +00:00
|
|
|
.metadata_conv = ff_vorbiscomment_metadata_conv,
|
2010-05-23 23:33:38 +00:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
2005-04-09 15:32:58 +00:00
|
|
|
};
|