summaryrefslogtreecommitdiff
path: root/ffmpeg.c
Commit message (Collapse)AuthorAge
* 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: 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.
* cmdutils: get rid of dummy contexts for examining AVOptions.Anton Khirnov2011-09-03
| | | | Replace it with newly introduced libavutil API.
* doxygen: fix wrong comment syntax, //< vs. ///<Diego Biurrun2011-08-26
|
* ffmpeg: remove unsed variable noptsDiego Biurrun2011-08-17
|
* mpeg12: remove repeat-field code disabled since May 2002Dustin Brody2011-08-15
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* cmdutils: allow precisely specifying a stream for AVOptions.Anton Khirnov2011-08-12
|
* ffmpeg: add a warning stating that the program is deprecated.Anton Khirnov2011-08-12
|
* Rename ffserver to avserver.Anton Khirnov2011-08-09
|
* cmdutils: add codec_opts parameter to setup_find_stream_info_opts()Stefano Sabatini2011-07-28
| | | | | | Avoid brittle and obfuscating reference to a global. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* ffmpeg: fix some indentationMans Rullgard2011-07-17
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* ffmpeg: fix operation with --disable-avfilterMans Rullgard2011-07-17
| | | | | | | The width and height must be copied from the input before being used. Signed-off-by: Mans Rullgard <mans@mansr.com>
* ffmpeg: Fix the check for experimental codecsMartin Storsjö2011-07-14
| | | | | | The variable 'codec' was used uninitialized here. Signed-off-by: Martin Storsjö <martin@martin.st>
* ffmpeg: print the low bitrate warning after the codec is openend.Anton Khirnov2011-07-14
| | | | | | | This doesn't access avcodec_opts, so it works with the new options passing system. Makes opt_bitrate() unneeded, so it's removed.
* ffmpeg: use new avcodec_open2 and avformat_find_stream_info API.Anton Khirnov2011-07-13
|
* ffmpeg: check experimental flag after codec is opened.Anton Khirnov2011-07-13
| | | | | This doesn't access avcodec_opts, so it will work with the new options passing system.
* ffmpeg: do not set GLOBAL_HEADER flag in the options contextAnton Khirnov2011-07-13
| | | | | The removed lines have no effect, since the flag is set on all encoder for the given file and avcodec_opts are reset between files.
* Replace some gotos that lead to single return statements by direct return.Diego Biurrun2011-07-13
|
* ffmpeg: get rid of a pointless limit on number of streams.Anton Khirnov2011-07-13
|
* ffmpeg: remove an unused define.Anton Khirnov2011-07-13
|
* lavf: deprecate AVFormatContext.timestampAnton Khirnov2011-07-12
| | | | It's replaced by 'creation_time' metadata tag.
* ffmpeg: merge input_files_ts_scale into InputStream.Anton Khirnov2011-07-12
|
* ffmpeg: don't abuse a global for passing sample format from input to outputAnton Khirnov2011-07-12
| | | | It's broken with multiple files or audio streams.
* ffmpeg: don't abuse a global for passing channel layout from input to outputAnton Khirnov2011-07-12
| | | | It's broken with multiple files or audio streams.
* ffmpeg: factor common code from new_a/v/s/d_stream to new_output_stream()Anton Khirnov2011-07-12
|
* ffmpeg: remove unused variables from InputStream.Anton Khirnov2011-07-08
|
* ffmpeg: remove pointless if (nb_input_files)Anton Khirnov2011-07-08
| | | | | It's required to be non-zero since cc58300e30e7aea6acfecd72a04a3886b285cfd8
* ffmpeg: merge input_files_ts_offset into input_files.Anton Khirnov2011-07-08
|
* ffmpeg: merge input_codecs into input_streams.Anton Khirnov2011-07-08
| | | | There's no point in keeping them separate.
* ffmpeg: drop AV prefixes from struct names.Anton Khirnov2011-07-08
| | | | Those are reserved for the libs.
* ffmpeg: deprecate loop_input and loop_output optionsAnton Khirnov2011-07-08
| | | | They were replaced by (de)muxer private options.
* lavf: deprecate AVStream.quality.Anton Khirnov2011-07-06
| | | | AVStream is no place for it and it's unused outside of ffmpeg anyway.
* Do not include mathematics.h in avutil.hMans Rullgard2011-07-03
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* ffmpeg: use av_get_bytes_per_sample() in place of av_get_bits_per_sample_fmt()Stefano Sabatini2011-07-02
| | | | | | av_get_bits_per_sample_fmt() was deprecated. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Replace usages of av_get_bits_per_sample_fmt() with av_get_bytes_per_sample().Justin Ruggles2011-06-20
| | | | av_get_bits_per_sample_fmt() is deprecated.
* ffmpeg: deprecate -vc and -tvstdAnton Khirnov2011-06-16
| | | | They've been replaced by demuxer private options.
* ffmpeg: use new avformat_open_* API.Anton Khirnov2011-06-16
|
* ffmpeg: don't abuse a global for passing frame size from input to outputAnton Khirnov2011-06-16
| | | | It's broken with multiple files or video streams.
* ffmpeg: don't abuse a global for passing pixel format from input to outputAnton Khirnov2011-06-16
| | | | It's broken with multiple files or video streams.
* ffmpeg: initialise encoders earlier.Anton Khirnov2011-06-16
| | | | Fixes choosing supported samplerate and framerate.
* ffmpeg: merge output_codecs array into AVOutputStream members.Anton Khirnov2011-06-16
| | | | There's no point in keeping them separate.
* ffmpeg: don't abuse a global for passing framerate from input to outputAnton Khirnov2011-06-15
| | | | It's broken with multiple files or video streams.
* ffmpeg: don't abuse a global for passing channels from input to outputAnton Khirnov2011-06-15
| | | | It's broken with multiple files or audio streams.
* ffmpeg: don't abuse a global for passing samplerate from input to outputAnton Khirnov2011-06-15
| | | | | | | It's broken with multiple files or audio streams. This removes the default samplerate of 44100 for raw input, hence all the FATE changes.
* ffmpeg: fix streaming to ffserver.Ronald S. Bultje2011-06-14
|
* ffmpeg.c: Add a necessary const qualifierAlex Converse2011-06-09
|
* Remove all uses of now deprecated metadata functions.Anton Khirnov2011-06-08
|
* Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name().Stefano Sabatini2011-06-03
| | | | | This fixes warnings about avcodec_get_pix_fmt_name() being deprecated. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Remove unused variablesMans Rullgard2011-06-02
|