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
2014-04-29lavf/concatdec: implement automatic conversions.Nicolas George
2014-04-29lavf/concatdec: reindent after last commit.Nicolas George
2014-04-29lavf/concatdec: always do stream matching.Nicolas George
2014-04-29lavf/concatdec: check match_streams() return value.Nicolas George
2014-04-29lavf/concatdec: use a structure for each stream.Nicolas George
2014-03-23lavf/concatdec: allow to match streams by id.Nicolas George
That makes the concat demuxer usable with MPEG-PS streams, even when the streams in the different parts are detected in different order.
2014-03-08lavf/concatdec: reindent after last commit.Nicolas George
2014-03-08lavf/concatdec: more reliable test for absolute URLs.Nicolas George
ff_make_absolute_url() recognizes the "://" pattern usual in HTTP-like protocols, but consider relative URLs starting with just the protocol name or using the comma syntax for options.
2014-02-10avformat/concatdec: pass the interrupt callback onZhang Rui
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-12-18lavf/concatdec: fix crash in case a file in script cannot be openedStefano Sabatini
2013-06-17Merge commit 'df9f22d42b0905385629a9d368bb5a1eef2b45ef'Michael Niedermayer
* commit 'df9f22d42b0905385629a9d368bb5a1eef2b45ef': avf: move url utility functions in a separate file Conflicts: libavformat/internal.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-15lavf/concat: reject empty scripts.Nicolas George
Fix trac ticket #2566.
2013-05-04lavf/concatdec: remove invalid check for AVSEEK_FLAG_BACKWARD.Nicolas George
2013-03-20lavf/concatdec: support seeking.Nicolas George
2013-03-20lavf/concatdec: fix possible leak in case of malloc failure.Nicolas George
Fix CID 747737.
2013-03-05lavf/concat: compute duration if possible.Nicolas George
2013-03-05Revert "lavf/concatdec: define "ffcat" and "ffconcat" extensions"Nicolas George
This reverts commit 6cc12353a88dfb21c4c5a38e6c83280483b0ec88. Conflicts: libavformat/version.h Allowing to automatically select the concat demuxer raises security concerns, as it allows a possibly hostile file to access any file on the system. Guessing the format based on the file name extension does not allow to enable the safe mode designed to avoid it.
2013-02-28lavf/concatdec: define "ffcat" and "ffconcat" extensionsStefano Sabatini
2013-02-24lavf/concatdec: add the "duration" directive.Nicolas George
2013-02-13lavf/concatdec: allow probing.Nicolas George
2013-02-13lavf/concatdec: add signature directive.Nicolas George
2013-02-13lavf/concatdec: add safe option.Nicolas George
2012-12-17concatdec: change data type to suppress warning about limited range of data ↵Michael Niedermayer
type on some platforms. Reviewed-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-12-12lavf/concatdec: avoid leaking URLs.Nicolas George
Use av_realloc instead of av_realloc_f to keep the original array in case of failure: it is freed in full by the fail label.
2012-12-06lavf: add a concat demuxer.Nicolas George