Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a bunch of common typos. | Diego Biurrun | 2011-12-11 | 1 | -1/+1 |
| | |||||
* | Call avformat_network_init/deinit in the programs | Martin Storsjö | 2011-11-06 | 1 | -0/+2 |
| | | | | | | | | | Calling the init function will become mandatory at some later point. By calling it, more heavy network init (such as SSL/TLS library init) can be done once at startup, instead of implicitly when used (which could lead to it being done a number of times). Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | cmdutils: Rename read_file to cmdutils_read_file | Martin Storsjö | 2011-10-31 | 1 | -1/+1 |
| | | | | | | | This symbol name clashes with a symbol in gnutls, if linking statically to that library. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | avtools: parse loglevel before all the other options. | Anton Khirnov | 2011-09-26 | 1 | -0/+1 |
| | | | | | This way it can be applied to cmdutils too -- e.g. showing the banner and printing startup messages. | ||||
* | Revert "ffmpeg: get rid of useless AVInputStream.nb_streams." | Anton Khirnov | 2011-09-21 | 1 | -3/+5 |
| | | | | | | | This reverts commit 2cf8355f98681bdd726b739008acd5483f82f8d7. AVInputStream.nb_streams tracks number of streams found at the beginning, new streams may appear that ffmpeg doesn't know about. Fixes crash in this case. | ||||
* | cmdutils: add support for caller-provided option context. | Anton Khirnov | 2011-09-04 | 1 | -2/+2 |
| | | | | This is the first step to removing the globals plague from avtools. | ||||
* | cmdutils: move grow_array() from avconv to cmdutils. | Anton Khirnov | 2011-09-04 | 1 | -20/+0 |
| | |||||
* | cmdutils: move exit_program() declaration to cmdutils from avconv | Anton Khirnov | 2011-09-04 | 1 | -73/+73 |
| | | | | Allows cmdutils to call each tool's own cleanup function. | ||||
* | cmdutils: get rid of dummy contexts for examining AVOptions. | Anton Khirnov | 2011-09-03 | 1 | -3/+7 |
| | | | | Replace it with newly introduced libavutil API. | ||||
* | doxygen: fix wrong comment syntax, //< vs. ///< | Diego Biurrun | 2011-08-26 | 1 | -3/+3 |
| | |||||
* | ffmpeg: remove unsed variable nopts | Diego Biurrun | 2011-08-17 | 1 | -4/+0 |
| | |||||
* | mpeg12: remove repeat-field code disabled since May 2002 | Dustin Brody | 2011-08-15 | 1 | -2/+0 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | cmdutils: allow precisely specifying a stream for AVOptions. | Anton Khirnov | 2011-08-12 | 1 | -2/+2 |
| | |||||
* | ffmpeg: add a warning stating that the program is deprecated. | Anton Khirnov | 2011-08-12 | 1 | -0/+4 |
| | |||||
* | Rename ffserver to avserver. | Anton Khirnov | 2011-08-09 | 1 | -4/+4 |
| | |||||
* | cmdutils: add codec_opts parameter to setup_find_stream_info_opts() | Stefano Sabatini | 2011-07-28 | 1 | -1/+1 |
| | | | | | | Avoid brittle and obfuscating reference to a global. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | ffmpeg: fix some indentation | Mans Rullgard | 2011-07-17 | 1 | -6/+6 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | ffmpeg: fix operation with --disable-avfilter | Mans Rullgard | 2011-07-17 | 1 | -4/+7 |
| | | | | | | | 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 codecs | Martin Storsjö | 2011-07-14 | 1 | -1/+1 |
| | | | | | | 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 Khirnov | 2011-07-14 | 1 | -15/+3 |
| | | | | | | | 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 Khirnov | 2011-07-13 | 1 | -25/+22 |
| | |||||
* | ffmpeg: check experimental flag after codec is opened. | Anton Khirnov | 2011-07-13 | 1 | -26/+26 |
| | | | | | 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 context | Anton Khirnov | 2011-07-13 | 1 | -4/+0 |
| | | | | | 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 Biurrun | 2011-07-13 | 1 | -6/+4 |
| | |||||
* | ffmpeg: get rid of a pointless limit on number of streams. | Anton Khirnov | 2011-07-13 | 1 | -5/+1 |
| | |||||
* | ffmpeg: remove an unused define. | Anton Khirnov | 2011-07-13 | 1 | -2/+0 |
| | |||||
* | lavf: deprecate AVFormatContext.timestamp | Anton Khirnov | 2011-07-12 | 1 | -7/+8 |
| | | | | It's replaced by 'creation_time' metadata tag. | ||||
* | ffmpeg: merge input_files_ts_scale into InputStream. | Anton Khirnov | 2011-07-12 | 1 | -9/+13 |
| | |||||
* | ffmpeg: don't abuse a global for passing sample format from input to output | Anton Khirnov | 2011-07-12 | 1 | -3/+7 |
| | | | | It's broken with multiple files or audio streams. | ||||
* | ffmpeg: don't abuse a global for passing channel layout from input to output | Anton Khirnov | 2011-07-12 | 1 | -3/+1 |
| | | | | 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 Khirnov | 2011-07-12 | 1 | -52/+28 |
| | |||||
* | ffmpeg: remove unused variables from InputStream. | Anton Khirnov | 2011-07-08 | 1 | -5/+0 |
| | |||||
* | ffmpeg: remove pointless if (nb_input_files) | Anton Khirnov | 2011-07-08 | 1 | -17/+14 |
| | | | | | It's required to be non-zero since cc58300e30e7aea6acfecd72a04a3886b285cfd8 | ||||
* | ffmpeg: merge input_files_ts_offset into input_files. | Anton Khirnov | 2011-07-08 | 1 | -9/+10 |
| | |||||
* | ffmpeg: merge input_codecs into input_streams. | Anton Khirnov | 2011-07-08 | 1 | -10/+7 |
| | | | | There's no point in keeping them separate. | ||||
* | ffmpeg: drop AV prefixes from struct names. | Anton Khirnov | 2011-07-08 | 1 | -54/+54 |
| | | | | Those are reserved for the libs. | ||||
* | ffmpeg: deprecate loop_input and loop_output options | Anton Khirnov | 2011-07-08 | 1 | -4/+10 |
| | | | | They were replaced by (de)muxer private options. | ||||
* | lavf: deprecate AVStream.quality. | Anton Khirnov | 2011-07-06 | 1 | -7/+8 |
| | | | | AVStream is no place for it and it's unused outside of ffmpeg anyway. | ||||
* | Do not include mathematics.h in avutil.h | Mans Rullgard | 2011-07-03 | 1 | -0/+1 |
| | | | | 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 Sabatini | 2011-07-02 | 1 | -1/+1 |
| | | | | | | 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 Ruggles | 2011-06-20 | 1 | -3/+3 |
| | | | | av_get_bits_per_sample_fmt() is deprecated. | ||||
* | ffmpeg: deprecate -vc and -tvstd | Anton Khirnov | 2011-06-16 | 1 | -10/+6 |
| | | | | They've been replaced by demuxer private options. | ||||
* | ffmpeg: use new avformat_open_* API. | Anton Khirnov | 2011-06-16 | 1 | -30/+47 |
| | |||||
* | ffmpeg: don't abuse a global for passing frame size from input to output | Anton Khirnov | 2011-06-16 | 1 | -6/+10 |
| | | | | It's broken with multiple files or video streams. | ||||
* | ffmpeg: don't abuse a global for passing pixel format from input to output | Anton Khirnov | 2011-06-16 | 1 | -3/+5 |
| | | | | It's broken with multiple files or video streams. | ||||
* | ffmpeg: initialise encoders earlier. | Anton Khirnov | 2011-06-16 | 1 | -6/+6 |
| | | | | Fixes choosing supported samplerate and framerate. | ||||
* | ffmpeg: merge output_codecs array into AVOutputStream members. | Anton Khirnov | 2011-06-16 | 1 | -11/+7 |
| | | | | There's no point in keeping them separate. | ||||
* | ffmpeg: don't abuse a global for passing framerate from input to output | Anton Khirnov | 2011-06-15 | 1 | -9/+13 |
| | | | | It's broken with multiple files or video streams. | ||||
* | ffmpeg: don't abuse a global for passing channels from input to output | Anton Khirnov | 2011-06-15 | 1 | -6/+9 |
| | | | | It's broken with multiple files or audio streams. | ||||
* | ffmpeg: don't abuse a global for passing samplerate from input to output | Anton Khirnov | 2011-06-15 | 1 | -11/+13 |
| | | | | | | | It's broken with multiple files or audio streams. This removes the default samplerate of 44100 for raw input, hence all the FATE changes. |