Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-01-06oggdec: make sure the private parse data is cleaned upLuca Barbato
2012-09-25ogg: calculate the start position once all the headers are parsedLuca Barbato
The fisbone packets can be muxed in any order as long the last one comes before the first data packet.
2012-09-25ogg: check that the expected number of headers had been parsedLuca Barbato
Not having the header for a codec is a tell-tale of a broken file.
2011-09-26oggdec: add support for Xiph's CELT codecNicolas George
This patch also introduces CODEC_ID_CELT. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-06-08Remove all uses of now deprecated metadata functions.Anton Khirnov
2011-04-15oggdec: simplify audio chained ogg streams supportClément Bœsch
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-04-10oggdec: fix demuxing chained audio streamsClément Bœsch
Chained ogg served by icecast and mpd should demux properly now. Fixes issue2337 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2010-04-16oggdec: Remove write-only variableDavid Conrad
Originally committed as revision 22889 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-20Add VorbisComment writing to FLAC files.James Darnley
Patch by James Darnley <james darnley at gmail>. Originally committed as revision 22605 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-12oggdec: Pass packets to header() until the stream is done with themDavid Conrad
This fixes some old ogm files that had the 3rd vorbis header after a data packet in another stream. This is invalid in ogg, but this change shouldn't affect the behaviour of any valid file. Originally committed as revision 22478 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-12Const correctness for vorbis_commentDavid Conrad
Originally committed as revision 22474 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-12oggdec: Metadata is per-stream; don't merge multiple streams' togetherDavid Conrad
Originally committed as revision 22473 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-12Add ff_ prefix to vorbis_commentDavid Conrad
Originally committed as revision 22472 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11oggdec: Seek to keyframesDavid Conrad
Originally committed as revision 22463 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11oggdec: Parse skeleton to determine the start time of each streamDavid Conrad
Originally committed as revision 22457 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11oggdec: Check that we have a codec in gptopts (needed for skeleton)David Conrad
Originally committed as revision 22456 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11oggdec: Move ogg_find_stream and ogg_gptopts to oggdec.hDavid Conrad
(skeleton will need them) Originally committed as revision 22455 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11oggdec: Save offset of the page needed to reconstruct the current packetDavid Conrad
Originally committed as revision 22453 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-08Fix playback with invalid files that don't set the continuation flag forDavid Conrad
pages that continue packets started in prior pages. Fixes issue1248 Originally committed as revision 21688 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-11oggdec: Set dts when knownDavid Conrad
Originally committed as revision 21134 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-11Add support for dirac in oggDavid Conrad
Originally committed as revision 21128 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-12-12Fix PTS for OGM codecs.David Conrad
Fixes issue251 Originally committed as revision 20815 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-13Calculate correct packet durations when demuxing Ogg/Speex. This involvesJustin Ruggles
determining if there is any delay in the first packet and/or any truncation in the final packet. Originally committed as revision 20216 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-14Add a VorbisComment metadata conversion table and use it in the FLAC andJustin Ruggles
Ogg demuxers. Originally committed as revision 19186 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-07Warning fix: Make ogg_stream.codec constDaniel Verkamp
This matches the return value of ogg_find_codec and fixes "libavformat/oggdec.c:333: warning: assignment discards qualifiers from pointer target type" Patch by Daniel Verkamp (daniel - drv . nu) Originally committed as revision 18769 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21Document ogg_codec's header functionDavid Conrad
Originally committed as revision 18100 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-03Delete unnecessary 'extern' keywords.Diego Biurrun
Originally committed as revision 15990 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-06OGG: untypedef demuxer structsMåns Rullgård
Originally committed as revision 15784 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-31Globally rename the header inclusion guard names.Stefano Sabatini
Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-24Add ff_ prefix to ogg_codec_t structsReimar Döffinger
Originally committed as revision 14951 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-24Make ogg_codec_t descriptions constReimar Döffinger
Originally committed as revision 14948 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-02Revert r14497Michael Niedermayer
Log: Add missing header #includes. Policy violation (change not approved by maintainer) and while discussions where ongoing and no consensus has been reached. Originally committed as revision 14500 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-01Add missing header #includes.Diego Biurrun
Originally committed as revision 14497 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-06Add support for speex in oggReimar Döffinger
Originally committed as revision 11878 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-04String pointers of ogg_codec_t should have const attribute.Reimar Döffinger
Originally committed as revision 11860 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-02cosmetics: sort ogg_codec_t listDiego Biurrun
Originally committed as revision 11810 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01Add support for ogg text subtitles.Reimar Döffinger
Originally committed as revision 11698 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-12set PKT_FLAG_KEY for Theora and OGM streamsMåns Rullgård
Originally committed as revision 11002 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-07Rename ogg2.[ch] to oggdec.[ch].Diego Biurrun
Originally committed as revision 10943 to svn://svn.ffmpeg.org/ffmpeg/trunk