Commit 9146ca37 authored by Måns Rullgård's avatar Måns Rullgård

Ogg demuxer ported from tcvp by Luca Barbato <lu_zero at gentoo dot org>,

fixups by me.

Originally committed as revision 4113 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a18ba908
......@@ -16,7 +16,7 @@ echo " --prefix=PREFIX install in PREFIX [$prefix]"
echo " --libdir=DIR install libs in DIR [PREFIX/lib]"
echo " --mandir=DIR man documentation in DIR [PREFIX/man]"
echo " --enable-mp3lame enable mp3 encoding via libmp3lame [default=no]"
echo " --enable-ogg enable ogg support via libogg [default=no]"
echo " --enable-libogg enable ogg support via libogg [default=no]"
echo " --enable-vorbis enable vorbis support via libvorbis [default=no]"
echo " --enable-theora enable theora support via libtheora [default=no]"
echo " --enable-faad enable faad support via libfaad [default=no]"
......@@ -154,7 +154,7 @@ dc1394="no"
network="yes"
zlib="yes"
mp3lame="no"
ogg="no"
libogg="no"
vorbis="no"
theora="no"
faad="no"
......@@ -432,7 +432,7 @@ for opt do
;;
--enable-mp3lame) mp3lame="yes"
;;
--enable-ogg) ogg="yes"
--enable-libogg) libogg="yes"
;;
--enable-vorbis) vorbis="yes"
;;
......@@ -492,16 +492,16 @@ for opt do
done
if test "$theora" = "yes" ; then
if test "$ogg" = "no" ; then
echo "Ogg must be enabled to enable Theora"
if test "$libogg" = "no"; then
echo "libogg must be enabled to enable Theora"
fail="yes"
theora="no"
fi
fi
if test "$vorbis" = "yes" ; then
if test "$ogg" = "no" ; then
echo "Ogg must be enabled to enable Vorbis"
if test "$libogg" = "no"; then
echo "libogg must be enabled to enable Vorbis"
fail="yes"
vorbis="no"
fi
......@@ -1095,7 +1095,7 @@ fi
echo "gprof enabled $gprof"
echo "zlib enabled $zlib"
echo "mp3lame enabled $mp3lame"
echo "ogg enabled $ogg"
echo "libogg enabled $libogg"
echo "vorbis enabled $vorbis"
echo "theora enabled $theora"
echo "faad enabled $faad"
......@@ -1395,7 +1395,7 @@ if test "$mp3lame" = "yes" ; then
echo "CONFIG_MP3LAME=yes" >> config.mak
fi
if test "$ogg" = "yes" ; then
if test "$libogg" = "yes" ; then
echo "#define CONFIG_LIBOGG 1" >> $TMPH
echo "CONFIG_LIBOGG=yes" >> config.mak
fi
......
......@@ -16,8 +16,8 @@ OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \
avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \
nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \
sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o asf-enc.o
sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o asf-enc.o \
ogg2.o oggparsevorbis.o
AMROBJS=
ifeq ($(AMR_NB),yes)
AMROBJS= amr.o
......
......@@ -81,9 +81,10 @@ void av_register_all(void)
amr_init();
#endif
yuv4mpeg_init();
#ifdef CONFIG_LIBOGG
ogg_init();
#ifdef CONFIG_LIBOGG
libogg_init();
#endif
ffm_init();
......
......@@ -467,9 +467,12 @@ int mp3_init(void);
/* yuv4mpeg.c */
int yuv4mpeg_init(void);
/* ogg.c */
/* ogg2.c */
int ogg_init(void);
/* ogg.c */
int libogg_init(void);
/* dv.c */
int ff_dv_init(void);
......
......@@ -134,7 +134,7 @@ static AVOutputFormat ogg_oformat = {
} ;
#endif //CONFIG_ENCODERS
#if 0
static int next_packet(AVFormatContext *avfcontext, ogg_packet *op) {
OggContext *context = avfcontext->priv_data ;
ogg_page og ;
......@@ -247,12 +247,12 @@ static AVInputFormat ogg_iformat = {
ogg_read_close,
.extensions = "ogg",
} ;
#endif
int ogg_init(void) {
int libogg_init(void) {
#ifdef CONFIG_ENCODERS
av_register_output_format(&ogg_oformat) ;
#endif
av_register_input_format(&ogg_iformat);
/* av_register_input_format(&ogg_iformat); */
return 0 ;
}
This diff is collapsed.
/**
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.
**/
#ifndef OGG_H
#define OGG_H
#include "avformat.h"
typedef struct ogg_codec {
uint8_t *magic;
uint8_t magicsize;
int8_t *name;
int (*header)(AVFormatContext *, int);
int (*packet)(AVFormatContext *, int);
} ogg_codec_t;
typedef struct ogg_stream {
uint8_t *buf;
unsigned int bufsize;
unsigned int bufpos;
unsigned int pstart;
unsigned int psize;
uint32_t serial;
uint32_t seq;
uint64_t granule, lastgp;
int flags;
ogg_codec_t *codec;
int header;
int nsegs, segp;
uint8_t segments[255];
} ogg_stream_t;
typedef struct ogg_state {
uint64_t pos;
int curidx;
struct ogg_state *next;
ogg_stream_t streams[];
} ogg_state_t;
typedef struct ogg {
ogg_stream_t *streams;
int nstreams;
int headers;
int curidx;
uint64_t size;
ogg_state_t *state;
} ogg_t;
#define OGG_FLAG_CONT 1
#define OGG_FLAG_BOS 2
#define OGG_FLAG_EOS 4
extern ogg_codec_t vorbis_codec;
#if 0
extern ogg_codec_t ogm_video_codec;
extern ogg_codec_t ogm_audio_codec;
extern ogg_codec_t ogm_old_codec;
extern ogg_codec_t flac_codec;
#endif
extern int vorbis_comment(AVFormatContext *ms, char *buf, int size);
#endif
/**
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 <stdlib.h>
#include "avformat.h"
#include "bitstream.h"
#include "bswap.h"
#include "ogg2.h"
extern int
vorbis_comment (AVFormatContext * as, char *buf, int size)
{
char *p = buf;
int s, n, j;
if (size < 4)
return -1;
s = le2me_32 (unaligned32 (p));
p += 4;
size -= 4;
if (size < s + 4)
return -1;
p += s;
size -= s;
n = le2me_32 (unaligned32 (p));
p += 4;
size -= 4;
while (size >= 4){
char *t, *v;
int tl, vl;
s = le2me_32 (unaligned32 (p));
p += 4;
size -= 4;
if (size < s)
break;
t = p;
p += s;
size -= s;
n--;
v = memchr (t, '=', s);
if (!v)
continue;
tl = v - t;
vl = s - tl - 1;
v++;
if (tl && vl){
char tt[tl + 1];
char ct[vl + 1];
for (j = 0; j < tl; j++)
tt[j] = toupper (t[j]);
tt[tl] = 0;
memcpy (ct, v, vl);
ct[vl] = 0;
// took from Vorbis_I_spec
if (!strcmp (tt, "AUTHOR"))
strncpy (as->author, ct, FFMIN(sizeof (as->author), vl));
else if (!strcmp (tt, "TITLE"))
strncpy (as->title, ct, FFMIN(sizeof (as->title), vl));
else if (!strcmp (tt, "COPYRIGHT"))
strncpy (as->copyright, ct, FFMIN(sizeof (as->copyright), vl));
else if (!strcmp (tt, "DESCRIPTION"))
strncpy (as->comment, ct, FFMIN(sizeof (as->comment), vl));
else if (!strcmp (tt, "GENRE"))
strncpy (as->genre, ct, FFMIN(sizeof (as->genre), vl));
else if (!strcmp (tt, "TRACKNUMBER"))
as->track = atoi (ct);
//Too bored to add others for today
}
}
if (size > 0)
av_log (as, AV_LOG_INFO, "%i bytes of comment header remain\n", size);
if (n > 0)
av_log (as, AV_LOG_INFO,
"truncated comment header, %i comments not found\n", n);
return 0;
}
/** Parse the vorbis header
* Vorbis Identification header from Vorbis_I_spec.html#vorbis-spec-codec
* [vorbis_version] = read 32 bits as unsigned integer | Not used
* [audio_channels] = read 8 bit integer as unsigned | Used
* [audio_sample_rate] = read 32 bits as unsigned integer | Used
* [bitrate_maximum] = read 32 bits as signed integer | Not used yet
* [bitrate_nominal] = read 32 bits as signed integer | Not used yet
* [bitrate_minimum] = read 32 bits as signed integer | Used as bitrate
* [blocksize_0] = read 4 bits as unsigned integer | Not Used
* [blocksize_1] = read 4 bits as unsigned integer | Not Used
* [framing_flag] = read one bit | Not Used
* */
static int
vorbis_header (AVFormatContext * s, int idx)
{
ogg_t *ogg = s->priv_data;
ogg_stream_t *os = ogg->streams + idx;
AVStream *st = s->streams[idx];
int cds = st->codec.extradata_size + os->psize + 2;
u_char *cdp;
if (os->seq > 2)
return 0;
st->codec.extradata = av_realloc (st->codec.extradata, cds);
cdp = st->codec.extradata + st->codec.extradata_size;
*cdp++ = os->psize >> 8;
*cdp++ = os->psize & 0xff;
memcpy (cdp, os->buf + os->pstart, os->psize);
st->codec.extradata_size = cds;
if (os->buf[os->pstart] == 1) {
u_char *p = os->buf + os->pstart + 11; //skip up to the audio channels
st->codec.channels = *p++;
st->codec.sample_rate = le2me_32 (unaligned32 (p));
p += 8; //skip maximum and and nominal bitrate
st->codec.bit_rate = le2me_32 (unaligned32 (p)); //Minimum bitrate
st->codec.codec_type = CODEC_TYPE_AUDIO;
st->codec.codec_id = CODEC_ID_VORBIS;
} else if (os->buf[os->pstart] == 3) {
vorbis_comment (s, os->buf + os->pstart + 7, os->psize - 8);
}
return os->seq < 3;
}
ogg_codec_t vorbis_codec = {
.magic = "\001vorbis",
.magicsize = 7,
.header = vorbis_header
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment