summaryrefslogtreecommitdiffstats
path: root/libavformat/options.c
Commit message (Collapse)AuthorAgeFilesLines
* lavf: rename fer option and document resulting (f_)err_detect optionsDustin Brody2012-01-211-3/+8
| | | | Signed-off-by: Anton Khirnov <[email protected]>
* lavf: simplify format_child_class_next()Luca Barbato2011-11-141-14/+17
| | | | | And fix the error introduced when adding private option to avio. See 32caa7b13cecca59213c73fa94dd683c2b003bfd
* lavf: pass options from AVFormatContext to avio.Anton Khirnov2011-11-131-3/+14
|
* mpegenc/mpegtsenc: add muxrate private options.Anton Khirnov2011-10-171-0/+2
| | | | Deprecate AVFormatContext.mux_rate.
* AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov2011-10-121-22/+22
|
* AVOptions: add new API for enumerating children.Anton Khirnov2011-10-121-22/+29
| | | | | | | | | This will allow the caller to enumerate child contexts in a generic way and since the API is recursive, it also allows for deeper nesting (e.g. AVFormatContext->AVIOContext->URLContext) This will also allow the new setting/reading API to transparently apply to children contexts.
* lavf,lavc,sws: add {avcodec,avformat,sws}_get_class() functions.Anton Khirnov2011-09-031-0/+5
|
* AVOptions: add AV_OPT_SEARCH_FAKE_OBJ flag for av_opt_find().Anton Khirnov2011-09-031-1/+1
| | | | | It allows to search for options only with AVClass, without allocating the corresponding context.
* lavf: add support for error_recognition, use it in avidec, and bump minor ↵Dustin Brody2011-08-121-0/+3
| | | | | | API version Signed-off-by: Anton Khirnov <[email protected]>
* lavf: Add an option to discard corrupted framesZohar Kelrich2011-08-021-0/+1
| | | | | Signed-off-by: Zohar Kelrich <[email protected]> Signed-off-by: Luca Barbato <[email protected]>
* lavf: add avformat_open_input() as a replacement for av_open_input_*Anton Khirnov2011-06-161-0/+28
| | | | Add support for demuxer private options.
* options: Add missing braces around struct initializer.Diego Biurrun2011-06-081-1/+1
| | | | | This fixes the warning: libavformat/options.c:62:1: warning: missing braces around initializer [-Wmissing-braces]
* movenc: Deprecate the global RTP hinting flag, use a private AVOption insteadMartin Storsjö2011-05-271-1/+3
| | | | | | Instead of -fflags rtphint, set -movflags rtphint instead. Signed-off-by: Martin Storsjö <[email protected]>
* avformat: Add fpsprobesize as an AVOption.Alex Converse2011-05-251-0/+1
|
* lavf: remove duplicate assignment in avformat_alloc_context.Anton Khirnov2011-05-171-1/+0
| | | | AVClass is already initialized in avformat_get_context_defaults.
* lavf: use designated initializers for AVClasses.Anton Khirnov2011-05-171-1/+6
|
* AVOptions: make default_val a union, as proposed in AVOption2.Anton Khirnov2011-05-101-17/+17
| | | | This breaks API and ABI.
* lavf: remove FF_API_ALLOC_FORMAT_CONTEXT cruftAnton Khirnov2011-04-191-7/+0
|
* lavf: remove FF_API_OLD_METADATA cruftAnton Khirnov2011-04-191-4/+0
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | Signed-off-by: Mans Rullgard <[email protected]>
* add FF_API_ALLOC_FORMAT_CONTEXT define to disable the deprecatedAurelien Jacobs2010-10-151-1/+1
| | | | | | av_alloc_format_context() public function Originally committed as revision 25483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVOptions from libavcodec to libavutilMichael Niedermayer2010-09-261-1/+1
| | | | Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add an AVOption max_delay for AVFormatContext->max_delayMartin Storsjö2010-09-241-0/+1
| | | | | | | | 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
* rename LAVF_API_* defines to FF_API_* to clarify that it is not public APIAurelien Jacobs2010-08-181-1/+1
| | | | Originally committed as revision 24825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add LAVF_API_OLD_METADATA define to disable the deprecated metadata APIAurelien Jacobs2010-08-171-1/+1
| | | | Originally committed as revision 24818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove typo: s/ingore/ignore/Luca Barbato2010-06-241-1/+1
| | | | Originally committed as revision 23758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a flag for enabling RTP hintingMartin Storsjö2010-05-181-0/+1
| | | | Originally committed as revision 23161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add version to AVClass so we can add to and use fields of AVClass without ↵Michael Niedermayer2010-04-281-1/+1
| | | | | | ABI issues. Originally committed as revision 22987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-201-1/+1
| | | | | | | | 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
* Add AVFMT_FLAG_NOFILLIN and AVFMT_FLAG_NOPARSE.Michael Niedermayer2010-03-311-0/+2
| | | | Originally committed as revision 22745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flag to ignore dts on frames that contain pts.Michael Niedermayer2010-01-301-0/+1
| | | | | | | 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
* Increase default value for max_analyze_duration, fixes issue 1506, a regression.Carl Eugen Hoyos2009-11-091-1/+1
| | | | Originally committed as revision 20483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AVFormatContext->probesize in av_find_stream_info and raise default to 5MBaptiste Coudurier2009-06-251-1/+1
| | | | Originally committed as revision 19274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* deprecate old metadata APIAurelien Jacobs2009-03-011-0/+2
| | | | Originally committed as revision 17690 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_malloc_format_context() in favor ofStefano Sabatini2009-02-081-1/+8
| | | | | | | 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
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-011-1/+1
| | | | | | | 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
* Move the AVFormatContext options definition to a dedicated file,Stefano Sabatini2009-01-101-0/+83
reduce the utils.c clutter. Originally committed as revision 16516 to svn://svn.ffmpeg.org/ffmpeg/trunk