Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-02-06lavf: move fifo test muxer into separate fileJosh de Kock
This fixes the fate-fifo-muxer test with the clarified removal of registering external formats.
2017-12-06avformat/mux: stop delaying writing the headerJames Almer
Every bitstream filter behaves as intended now, so there's no need to wait for the first packet of every stream. Signed-off-by: James Almer <jamrial@gmail.com>
2017-11-13movenc-test: fix potential uninitialized readTimo Rothenpieler
Fixes CID #1413023
2017-10-29avformat: remove use of deprecated AVFMT_FLAG_KEEP_SIDE_DATA flagJames Almer
It has no effect whatsoever since the major bump. Replace the flag's documentation to reflect this as well. Signed-off-by: James Almer <jamrial@gmail.com>
2017-09-28movenc-test: Add tests for negative cts offsetsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-09-01Use the new AVIOContext destructor.Anton Khirnov
(cherry picked from commit 6f554521afdf7ab4edbfaa9536660a1dca946b19) Signed-off-by: James Almer <jamrial@gmail.com>
2017-04-04Merge commit '537b5b773b317af79d3a5b576ee9683e15ed84f6'James Almer
* commit '537b5b773b317af79d3a5b576ee9683e15ed84f6': rtmpdh: Do global initialization before running the test Merged-by: James Almer <jamrial@gmail.com>
2017-03-15ffmpeg, ffprobe: don't "merge" side data into packet data by defaultwm4
Preparation for potentially disabling merged side data by default in the libs. Do this in particular because it affects fate tests. The changed tests either reflect added packet side data, or the changed packet size due to merged side data removal reducing the packet size.
2017-01-06avformat/test/fifo_muxer: add check for FailingMuxerPacketData allocSteven Liu
CID: 1396257 Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
2016-12-02avformat/tests/fifo_muxer: includes libavformat/network.h to define ↵Gregory J. Wolfe
ETIMEDOUT for fate build. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-11-24rtmpdh: Do global initialization before running the testMartin Storsjö
The rtmpdh code can use crypto libraries which may require a process global init. (gcrypt is one of the libraries where the rtmpdh test code can fail if global init hasn't been done, depending on gcrypt version.) Signed-off-by: Martin Storsjö <martin@martin.st>
2016-10-19FATE: Add test for muxing discontinuous MP4 fragments with large timestampsDerek Buitenhuis
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2016-10-18avformat/tests/gitignore: add fifo_muxer entryZhao Zhili
Reviewed-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-08-22avformat/fifo: Add fate testJan Sebechlebsky
Tested-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
2016-06-23Merge commit 'a79aafd0b4d37eda6f15dc68e6509d4e815290c9'Matthieu Bouron
* commit 'a79aafd0b4d37eda6f15dc68e6509d4e815290c9': movenc: Add a test for VFR with b-frames, with a duration change at a fragment end Merged-by: Matthieu Bouron <matthieu.bouron@stupeflix.com>
2016-06-23Merge commit 'fd4957d9c67996e7d218fd36b4168c9cb85f9ea7'Matthieu Bouron
* commit 'fd4957d9c67996e7d218fd36b4168c9cb85f9ea7': movenc-test: Test write_data_type Merged-by: Matthieu Bouron <matthieu.bouron@stupeflix.com>
2016-06-22Merge commit 'a6a750c7ef240b72ce01e9653343a0ddf247d196'Clément Bœsch
* commit 'a6a750c7ef240b72ce01e9653343a0ddf247d196': tests: Move all test programs to a subdirectory Merged-by: Clément Bœsch <clement@stupeflix.com>
2016-05-18movenc: Add a test for VFR with b-frames, with a duration change at a ↵Martin Storsjö
fragment end Signed-off-by: Martin Storsjö <martin@martin.st>
2016-05-18movenc-test: Test write_data_typeMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2016-05-13tests: Move all test programs to a subdirectoryDiego Biurrun