summaryrefslogtreecommitdiff
path: root/libavformat/concatdec.c
Commit message (Collapse)AuthorAgeFilesLines
* lavf/concat: compute duration if possible.Nicolas George2013-03-051-0/+13
|
* Revert "lavf/concatdec: define "ffcat" and "ffconcat" extensions"Nicolas George2013-03-051-1/+0
| | | | | | | | | | | | | 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.
* lavf/concatdec: define "ffcat" and "ffconcat" extensionsStefano Sabatini2013-02-281-0/+1
|
* lavf/concatdec: add the "duration" directive.Nicolas George2013-02-241-0/+15
|
* lavf/concatdec: allow probing.Nicolas George2013-02-131-1/+2
|
* lavf/concatdec: add signature directive.Nicolas George2013-02-131-0/+9
|
* lavf/concatdec: add safe option.Nicolas George2013-02-131-0/+44
|
* concatdec: change data type to suppress warning about limited range of data ↵Michael Niedermayer2012-12-171-1/+1
| | | | | | | type on some platforms. Reviewed-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavf/concatdec: avoid leaking URLs.Nicolas George2012-12-121-2/+4
| | | | | 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.
* lavf: add a concat demuxer.Nicolas George2012-12-061-0/+221