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
2011-12-18omadec: split data that will be used in the muxer to a separate file.Anton Khirnov
2011-12-18lavf: rename oma.c -> omadec.cAnton Khirnov
2011-12-04oma: PCM supportDavid Goldwich
Signed-off-by: David Goldwich <david.goldwich@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-12-04oma: better format detection with small probe bufferDavid Goldwich
Signed-off-by: David Goldwich <david.goldwich@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-12-04oma: clearify ambiguous if conditionDavid Goldwich
Signed-off-by: David Goldwich <david.goldwich@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-11-30lavf: make av_set_pts_info private.Anton Khirnov
It's supposed to be called only from (de)muxers.
2011-10-19lavf,lavd: replace av_new_stream->avformat_new_stream part I.Anton Khirnov
Trivial replacements with sed are done in this commit: sed 's/av_new_stream(\([^)]*\), 0)/avformat_new_stream(\1, NULL)/'
2011-09-21oma: support for encrypted filesDavid Goldwich
Signed-off-by: David Goldwich <david.goldwich@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-07-17lavf: use designated initialisers for all (de)muxers.Anton Khirnov
It's more readable and less prone to breakage.
2011-07-03Remove statements immediately following unconditional jumpsMans Rullgard
This removes a number of compiler warnings. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-02oma: check avio_read() return valueMans Rullgard
2011-04-22Use av_log_ask_for_sample() to request samples from users.Diego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-21avio: avio_ prefixes for get_* functionsAnton Khirnov
In the name of consistency: get_byte -> avio_r8 get_<type> -> avio_r<type> get_buffer -> avio_read get_partial_buffer will be made private later get_strz is left out becase I want to change it later to return something useful. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-27Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò
This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
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-08-31move pcm demuxers to their own fileAurelien Jacobs
Originally committed as revision 24993 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-17Add metadata support. Patch by Michael Karcher.Michael Karcher
Originally committed as revision 23639 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 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-01-17Fix indentation after r21257.Carl Eugen Hoyos
Originally committed as revision 21258 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-17Support demuxing of Sony OpenMG files without metadata header.Michael Karcher
Original patch by Michael Karcher, ffmpeg A mkarcher dialup fu-berlin de Originally committed as revision 21257 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-23Add ff_ prefixes to exported symbols in libavformat/riff.h.Daniel Verkamp
patch by Daniel Verkamp, aniel drv nu Originally committed as revision 19254 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-16oma: fix build if memcmp() is a macroMåns Rullgård
Any C library function may be a macro, so compound literals passed to memcmp() must be surrounded by parens to avoid being split on commas. Originally committed as revision 18856 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-24Mark several libavformat arrays constReimar Döffinger
Originally committed as revision 14950 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-24Change codec_tag type from const struct AVCodecTag ** to const struct ↵Reimar Döffinger
AVCodecTag * const * Originally committed as revision 14947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25Add support for mp3 contained in omaBenjamin Larsson
Originally committed as revision 13980 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25Rearrange parameter logicBenjamin Larsson
Originally committed as revision 13979 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25Add more codec IDs and tags.Benjamin Larsson
Originally committed as revision 13977 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-08Oma demuxerBenjamin Larsson
Originally committed as revision 13712 to svn://svn.ffmpeg.org/ffmpeg/trunk