summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* libx264: fix setting the H.264 levelAndrej Peterka2011-09-07
| | | | | | Move setting it after x264_param_default_preset() Signed-off-by: Anton Khirnov <anton@khirnov.net>
* libx264: add 'direct-pred' private optionAnton Khirnov2011-09-07
| | | | Deprecate AVCodecContext.directpred
* libx264: add 'partitions' private optionAnton Khirnov2011-09-07
| | | | Deprecate AVCodecContext.partitions.
* libx264: add 'cplxblur' private optionAnton Khirnov2011-09-06
| | | | Deprecate AVCodecContext.complexityblur
* libx264: add 'deblock' private optionAnton Khirnov2011-09-06
| | | | Deprecate AVCodecContext.deblockalpha/deblockbeta
* libx264: add 'b-bias' private optionAnton Khirnov2011-09-06
| | | | Deprecate AVCodecContext.bframebias.
* libx264: fix setting some options.Anton Khirnov2011-09-06
| | | | | | | | | | | Specifically: gop_size, max_b_frames, scenechange_threshold, qmin, qmax, max_qdiff, qblur, qcompress and refs. Change their default values to -1 and only use them if the user explicitly set them. Otherwise x264 defaults are used. Move setting those options after x264_param_default_preset(), so they don't get overwritten by it.
* libx264: remove useless assignmentAnton Khirnov2011-09-06
| | | | priv_data is memset to 0.
* ac3dec: avoid pointless alloc and indirection for input_bufferReimar Döffinger2011-09-06
| | | | | Since we now always allocate it, it can simply be made part of the context instead.
* mpeg12: cosmetics: reformat as K&RDiego Biurrun2011-09-06
|
* ac3enc: Add channel coupling support for the fixed-point AC-3 encoder.Justin Ruggles2011-09-05
| | | | Update FATE references accordingly.
* ac3enc: scale floating-point coupling channel coefficients inJustin Ruggles2011-09-05
| | | | scale_coefficients() rather than in apply_channel_coupling()
* ac3enc: fix encoding of stereo ac3 files when rematrixing is disabled.Justin Ruggles2011-09-05
| | | | The number of rematrixing bands still needs to be calculated.
* wavpack: fix wrong return value in wavpack_decode_block()Kostya Shishkov2011-09-05
| | | | | | | | This function should return number of samples decoded, not number of bytes decoded. Spotted by Uoti Urpala. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* avconv: fix parsing metadata specifiers.Anton Khirnov2011-09-05
| | | | | | After 039267f192f335144d9251e6f05a1513dd1e8ef1, metadata specifiers are passed without the leading ':'. Remove a ++ that didn't take this into account.
* fate: use +frame+slice named constants instead of '3'Anton Khirnov2011-09-05
|
* mpeg12: propagate more real return values through chunk decode error return ↵Dustin Brody2011-09-05
| | | | | | and fix some indentation Signed-off-by: Anton Khirnov <anton@khirnov.net>
* wavpack: use context reset in appropriate placesKostya Shishkov2011-09-05
| | | | | | | | This fixes improper flushing in the cases when the same frame is decoded in several iterations (for being too large to fit into output buffer) and flush is called mid-decoding and it also resets context in case of decoding errors. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avconv: move mux_preload and mux_max_delay to options contextAnton Khirnov2011-09-05
|
* avconv: move bitstream filters to options context.Anton Khirnov2011-09-05
| | | | | Change syntax -- -[vas]bsf are replaced by -bsf:[stream specifier], the argument is now a comma-separated list of bitstream filters.
* avconv: move rate_emu to options context.Anton Khirnov2011-09-05
| | | | Make it work properly with multiple input files.
* avconv: move max_frames to options context.Anton Khirnov2011-09-05
| | | | | Add a -frames option that uses generic stream specifiers, change -[vad]frames into aliases to it.
* avconv: move metadata to options context.Anton Khirnov2011-09-05
| | | | It is now possible to set metadata on streams and chapters.
* avconv: move ts scale to options context.Anton Khirnov2011-09-05
|
* avconv: move chapter maps to options context.Anton Khirnov2011-09-05
|
* avconv: move metadata maps to options context.Anton Khirnov2011-09-05
|
* avconv: move codec_names to options context.Anton Khirnov2011-09-05
|
* lavc: fix type for thread_type optionAnton Khirnov2011-09-04
| | | | It should be flags, not int.
* avconv: move format to options contextAnton Khirnov2011-09-04
|
* avconv: move limit_filesize to options contextAnton Khirnov2011-09-04
|
* avconv: move start_time, recording_time and input_ts_offset to options contextAnton Khirnov2011-09-04
|
* avconv: add a context for options.Anton Khirnov2011-09-04
| | | | | | Move stream maps to it. Eventually all non-global options should be stored in it.
* cmdutils: allow storing per-stream/chapter/.... options in a generic wayAnton Khirnov2011-09-04
|
* cmdutils: split per-option code out of parse_options().Anton Khirnov2011-09-04
| | | | | This allows options like -target, which are just shortcuts for other options, to work without dummy function for all options they invoke.
* cmdutils: add support for caller-provided option context.Anton Khirnov2011-09-04
| | | | This is the first step to removing the globals plague from avtools.
* cmdutils: declare only one pointer type in OptionDefAnton Khirnov2011-09-04
| | | | This will be useful in the following commit.
* cmdutils: move grow_array() from avconv to cmdutils.Anton Khirnov2011-09-04
|
* cmdutils: move exit_program() declaration to cmdutils from avconvAnton Khirnov2011-09-04
| | | | Allows cmdutils to call each tool's own cleanup function.
* http: Consider the stream as seekable if the reply contains Accept-Ranges: bytesStefan Fritsch2011-09-04
| | | | | | | | | | | | The initial request contains "Range: 0-", which servers normally have responded with "HTTP/1.1 206 Partial Content" reply with a Content-Range header, which was used as indicator for seekability. Apache, since 2.2.20, responds with "HTTP/1.1 200 OK" for these requests, which is more friendly to caches and proxies, but the seekability still is indicated via the Accept-Ranges: bytes header. Signed-off-by: Martin Storsjö <martin@martin.st>
* nutenc: add namespace to the api facing functionsLuca Barbato2011-09-04
| | | | | Rename write_{header,packet,trailer} to nut_write_{header,packet,trailer} in order to make easier debugging them.
* AVOptions: fix av_set_string3() doxy to match reality.Anton Khirnov2011-09-03
| | | | Fixes bug 28.
* cmdutils: get rid of dummy contexts for examining AVOptions.Anton Khirnov2011-09-03
| | | | Replace it with newly introduced libavutil API.
* lavf,lavc,sws: add {avcodec,avformat,sws}_get_class() functions.Anton Khirnov2011-09-03
|
* AVOptions: add AV_OPT_SEARCH_FAKE_OBJ flag for av_opt_find().Anton Khirnov2011-09-03
| | | | | It allows to search for options only with AVClass, without allocating the corresponding context.
* cpu detection: avoid a signed overflowSean McGovern2011-09-03
| | | | | | 1<<31 overflows because 1 is signed, so force it to unsigned. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* codec-regression: force vsync 0 on the me_threshold test to make sure frames ↵Alex Converse2011-09-01
| | | | match.
* avconv: fix some bugs introduced in 630902a1e1336e7ee0cf3dcbcb6eb07af8edf660Michael Niedermayer2011-09-01
| | | | | | | | | These caused scrambled error messages to be printed and floating point exceptions. For example when there was no decoder available for a stream. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* libmp3lame: fix typoAnton Khirnov2011-09-01
| | | | | | FF_API_LAME_GLOBAL_OPTIONS => FF_API_LAME_GLOBAL_OPTS Thanks to Clément Bœsch for spotting.
* AVOptions: drop av_ prefix from static av_get_number().Anton Khirnov2011-09-01
|
* libx264: use X264_THREADS_AUTO constant instead of 0.Anton Khirnov2011-09-01
|