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-06-16lavf: add avformat_open_input() as a replacement for av_open_input_*Anton Khirnov
Add support for demuxer private options.
2011-06-08options: Add missing braces around struct initializer.Diego Biurrun
This fixes the warning: libavformat/options.c:62:1: warning: missing braces around initializer [-Wmissing-braces]
2011-05-27movenc: Deprecate the global RTP hinting flag, use a private AVOption insteadMartin Storsjö
Instead of -fflags rtphint, set -movflags rtphint instead. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-05-25avformat: Add fpsprobesize as an AVOption.Alex Converse
2011-05-18lavf: remove duplicate assignment in avformat_alloc_context.Anton Khirnov
AVClass is already initialized in avformat_get_context_defaults.
2011-05-18lavf: use designated initializers for AVClasses.Anton Khirnov
2011-05-10AVOptions: make default_val a union, as proposed in AVOption2.Anton Khirnov
This breaks API and ABI.
2011-04-19lavf: remove FF_API_ALLOC_FORMAT_CONTEXT cruftAnton Khirnov
2011-04-19lavf: remove FF_API_OLD_METADATA cruftAnton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-10-15add FF_API_ALLOC_FORMAT_CONTEXT define to disable the deprecatedAurelien Jacobs
av_alloc_format_context() public function Originally committed as revision 25483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-26Move AVOptions from libavcodec to libavutilMichael Niedermayer
Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-09-24Add an AVOption max_delay for AVFormatContext->max_delayMartin Storsjö
This can currently also be set via -muxdelay in ffmpeg for muxers, but not for demuxers (nor for demuxers in ffplay) - this patch allows it to be set in all those cases. Originally committed as revision 25180 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-19rename LAVF_API_* defines to FF_API_* to clarify that it is not public APIAurelien Jacobs
Originally committed as revision 24825 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-18add LAVF_API_OLD_METADATA define to disable the deprecated metadata APIAurelien Jacobs
Originally committed as revision 24818 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-24Remove typo: s/ingore/ignore/Luca Barbato
Originally committed as revision 23758 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-18Add a flag for enabling RTP hintingMartin Storsjö
Originally committed as revision 23161 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-29Add version to AVClass so we can add to and use fields of AVClass without ↵Michael Niedermayer
ABI issues. Originally committed as revision 22987 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-31Add AVFMT_FLAG_NOFILLIN and AVFMT_FLAG_NOPARSE.Michael Niedermayer
Originally committed as revision 22745 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-31Flag to ignore dts on frames that contain pts.Michael Niedermayer
This works around common issues with mpeg-ps files with broken timestamps. Also allows playing the broken sample from issue1024. Originally committed as revision 21562 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-09Increase default value for max_analyze_duration, fixes issue 1506, a regression.Carl Eugen Hoyos
Originally committed as revision 20483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-25use AVFormatContext->probesize in av_find_stream_info and raise default to 5MBaptiste Coudurier
Originally committed as revision 19274 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-01deprecate old metadata APIAurelien Jacobs
Originally committed as revision 17690 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-08Deprecate av_malloc_format_context() in favor ofStefano Sabatini
avformat_alloc_context(), and drop the old symbol at the next major bump. Originally committed as revision 17047 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
2009-01-10Move the AVFormatContext options definition to a dedicated file,Stefano Sabatini
reduce the utils.c clutter. Originally committed as revision 16516 to svn://svn.ffmpeg.org/ffmpeg/trunk