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
2010-11-29Ensure that data_offset is set correctly when there are partialAaron Colwell
data packets before the first complete one. Patch by Aaron Colwell [acolwell chromium org]. Originally committed as revision 25846 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-10-15Export metadata in the generic format. Deprecate old conversion API.Anton Khirnov
patch by Anton Khirnov anton _at_ khirnov _dot_ net Originally committed as revision 25493 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-09Fix printf format warningsEli Friedman
patch by Eli Friedman <eli dot friedman at gmail dot com> Originally committed as revision 23547 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-24Enable AVFMT_GENERIC_INDEX for Ogg demuxer. This avoids the manyReimar Döffinger
seeks needed for binary search when seeking to a previously seen location. Originally committed as revision 23279 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-16oggdec: Move warning about missing granule to the correct placeDavid Conrad
Originally committed as revision 22891 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-16oggdec: Fix duration calculation if the last page in a file has no granuleDavid Conrad
Originally committed as revision 22890 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-16oggdec: Remove write-only variableDavid Conrad
Originally committed as revision 22889 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Replace all occurences of PKT_FLAG_KEY with AV_PKT_FLAG_KEY.Jean-Daniel Dupas
Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 22744 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 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-11oggdec: Seek to keyframesDavid Conrad
Originally committed as revision 22463 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11oggdec: Determine pts and filepos on a packet basis in read_timestampDavid Conrad
This takes into account whether the granule defines the start or end times of packets, and sets the correct file offset of the associated page. Originally committed as revision 22462 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11oggdec: Move PTS/DTS calculation to a functionDavid Conrad
Originally committed as revision 22461 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-11oggdec: Fix duration calculation for streams with non-zero startDavid Conrad
Originally committed as revision 22458 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: 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: Set data_offset to the right valueDavid Conrad
Otherwise it gets set automatically to a page midstream and prevents seeking to the first page. Originally committed as revision 22454 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-08Make sure the header value used to avoid repeating headers on seeking to theReimar Döffinger
start and to avoid initializing codecs with missing headers is set for all streams. Fixes issue 1723. Originally committed as revision 21693 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-09-30Disable parsing for ogg streams where no ogg header was found,Reimar Döffinger
if no header was found the parser was not initialized and thus will crash when trying to use it. Originally committed as revision 20093 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-04-15Ensure that there's pages to read for duration calculation in the ogg demuxerDavid Conrad
Originally committed as revision 18523 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-14Use consistent indent style in oggdec.Peter Ross
Originally committed as revision 17227 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-10-03Remove offset_t typedef and use int64_t directly instead.Diego Biurrun
The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included. Originally committed as revision 15533 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-06-26Remove start_time guessing code.Michael Niedermayer
Originally committed as revision 13988 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-03Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 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-01Add support for ogg text subtitles.Reimar Döffinger
Originally committed as revision 11698 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-20use proper url_is_streamed() APIAurelien Jacobs
instead of messing with ByteIOContext internal is_streamed field Originally committed as revision 11276 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-21Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson
patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 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