summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | aasc: support 16bppPiotr Bandurski2012-05-20
| | | | | | | | | | | | | | | | sample: http://www.datafilehost.com/download-b881f3f6.html Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: move setting big_picture.pts upMichael Niedermayer2012-05-20
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavu/tree: perform minor fixes to av_tree_insert() documentationStefano Sabatini2012-05-20
| |
* | buffersrc: cosmetic: reindent.Nicolas George2012-05-20
| |
* | cmdutils: allow to specify a stream by its ID.Nicolas George2012-05-20
| | | | | | | | | | | | | | The stream can be specified as "#129" or "#0x81". It is especially useful for VOBs dumped from a DVD, where the language-id mapping is available externally and the probing can find the streams in a random order.
* | ffmpeg: change AVFMT_RAWPICTURE pts to reduce diff to qatarMichael Niedermayer2012-05-20
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: random cosmectics to reduce diff to qatarMichael Niedermayer2012-05-20
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: cosmetics to reduce difference to qatar by 101 linesMichael Niedermayer2012-05-20
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: cosmetics to reduce difference to qatar by about 90 linesMichael Niedermayer2012-05-20
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: move ost->frame_rate setting code before the filtergraph stuffMichael Niedermayer2012-05-20
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: drop pkt_ptsMichael Niedermayer2012-05-20
| | | | | | | | | | | | | | Reduces diff to qatar by 9 lines Should not change anything Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: set the video filters timebase to the demuxers.Michael Niedermayer2012-05-20
| | | | | | | | | | Inspired-by a change from Anton Khirnov Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: reintroducing check_recording_time()Michael Niedermayer2012-05-20
| | | | | | | | | | | | | | This reduces the difference to qatar by 27 lines No functional change, the code should be unused Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: fix uninitialized variable warningMichael Niedermayer2012-05-20
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-05-20
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: fate: fix dependencies on SAMPLES being set fate: remove unnecessary libavfilter dependency Conflicts: ffmpeg.c tests/Makefile tests/fate/aac.mak tests/fate/audio.mak tests/fate/demux.mak tests/fate/ea.mak tests/fate/image.mak tests/fate/lossless-audio.mak tests/fate/lossless-video.mak tests/fate/microsoft.mak tests/fate/mpc.mak tests/fate/probe.mak tests/fate/qt.mak tests/fate/real.mak tests/fate/screen.mak tests/fate/video.mak tests/fate/voice.mak tests/fate/vqf.mak tests/ref/fate/idroq-video-encode tests/ref/fate/vc1-ism Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * fate: fix dependencies on SAMPLES being setMans Rullgard2012-05-19
| | | | | | | | | | | | | | This allows fate to run without errors with or without SAMPLES being set. Signed-off-by: Mans Rullgard <mans@mansr.com>
| * fate: remove unnecessary libavfilter dependencyMans Rullgard2012-05-19
| | | | | | | | | | | | avconv now requires libavfilter so this dependency is redundant. Signed-off-by: Mans Rullgard <mans@mansr.com>
| * avconv: reindentAnton Khirnov2012-05-18
| |
| * avconv: replace -vsync cfr code with the fps filter.Anton Khirnov2012-05-18
| | | | | | | | | | | | | | | | Invented timestamps for the h264 tests return to something resembling sanity. In the idroq-video-encode test when converting 25 fps -> 30 fps the fifth frame gets duplicated instead of the sixth.
* | swr: skip soft compensation when its disabled.Michael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | mpegaudidec: 10l forgot buf_sizeMichael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | mpegaudiodec: skip initial zeros.Michael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '755cd4197d53946208e042f095b930dca18d9430'Michael Niedermayer2012-05-19
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '755cd4197d53946208e042f095b930dca18d9430': mov: enable parsing for VC-1. lavfi: Add fps filter. lavfi: initialize pts to AV_NOPTS_VALUE when creating new buffer refs. avconv: add support for audio in complex filtergraphs. Conflicts: ffmpeg.c libavfilter/version.h libavformat/mov.c tests/ref/fate/vc1-ism Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * mov: enable parsing for VC-1.Anton Khirnov2012-05-18
| | | | | | | | | | This makes lavf discard broken timestamps for non-B frames in samples/isom/vc1-wmapro.ism.
| * lavfi: Add fps filter.Anton Khirnov2012-05-18
| | | | | | | | Partially based on a patch by Robert Nagy <ronag89@gmail.com>
| * lavfi: initialize pts to AV_NOPTS_VALUE when creating new buffer refs.Anton Khirnov2012-05-18
| |
| * avconv: add support for audio in complex filtergraphs.Anton Khirnov2012-05-18
| |
* | Use a variable instead of a repeated calculation when decoding AVUI.Carl Eugen Hoyos2012-05-19
| |
* | avuidec.c: Fix indentation.Carl Eugen Hoyos2012-05-19
| |
* | Simplify AVUI decoding, one skip value is enough.Carl Eugen Hoyos2012-05-19
| |
* | Fix interlaced AVUI decoding.Carl Eugen Hoyos2012-05-19
| |
* | ffmpeg: inject a aresample filter for -asyncMichael Niedermayer2012-05-19
| | | | | | | | | | | | Based on similar code from anton Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | af_aresample: use new swr API to pass and compensate PTSMichael Niedermayer2012-05-19
| | | | | | | | | | | | This code is not only much more powerfull its also simpler Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | af_aresample: allocate a larger buffer so accumulated data can be returned ↵Michael Niedermayer2012-05-19
| | | | | | | | | | | | quicker Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | af_aresample: use extended_dataMichael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swr: add swr_next_pts()Michael Niedermayer2012-05-19
| | | | | | | | | | | | parameter descriptions partly reuse text from af_asyncts Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swr: add swr_drop_output()Michael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swr: add swr_inject_silence()Michael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swr: Fix issue with injecting more data than can be used up in the next call.Michael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swr: add some asserts to resample()Michael Niedermayer2012-05-19
| | | | | | | | | | | | These check that the internal and input buffers match in format Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swr: add reversefill_audiodata()Michael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swr: fix buf_set() so it works with input == outputMichael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swr: make literal 32 a named constant in realloc_audio()Michael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | swr: fill_audio_data() support NULLMichael Niedermayer2012-05-19
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | f_split: fix output type.Nicolas George2012-05-19
| | | | | | | | | | | | | | | | The previous version checked the filter context name, instead of checking the filter name. The new version just uses the same type as the input. Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
* | avfilter: make AVFilterFormats compatible with libav.Nicolas George2012-05-19
| | | | | | | | | | | | The list goes back to being simple integers, and avfilter_make_format64_list is fixed to work with the correct structure directly.
* | lavfi: rename vf_split.c -> f_split.cStefano Sabatini2012-05-19
| | | | | | | | The file now contains both an audio and a video split filter.
* | lavfi/asplit: move asplit code to vf_split.c, and make it support N outputsStefano Sabatini2012-05-19
| | | | | | | | The move allows to share the init code already used by split.
* | lavf/id3v2: always strdup the value.Clément Bœsch2012-05-19
| | | | | | | | | | | | This simplifies the code but also fix a warning: ff_id3v1_genre_str array contains const strings so do the string dup now instead of in av_dict_set().
* | lavf/id3v2: do not export empty fields.Clément Bœsch2012-05-19
| | | | | | | | This also avoids a memleak.