- 31 Jul, 2014 1 commit
-
-
Gerion Entrup authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 30 Jul, 2014 2 commits
-
-
Michael Niedermayer authored
Reviewed-by:
Stefano Sabatini <stefasab@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 29 Jul, 2014 1 commit
-
-
Luca Barbato authored
Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
- 28 Jul, 2014 1 commit
-
-
Anton Khirnov authored
-
- 27 Jul, 2014 4 commits
-
-
Lou Logan authored
Signed-off-by:
Lou Logan <lou@lrcd.com>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
This provides a public sustainable API/ABI for DCT functions. Only externally used dct functions are included. The structure is extensible without ABI issues compared to the existing dct contexts. See Mailing list and IRC log of 2014-07-26/27 Reviewed-by: ubitux Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Reduces difference to 56f98e34Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 26 Jul, 2014 11 commits
-
-
Michael Niedermayer authored
Bug found from comparing 56f98e34 to HEAD Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Idea-from: 56f98e34Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Anton Khirnov authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
This would allow the example to be used in regression tests Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Idea from: 56f98e34Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Anton Khirnov authored
-
Anton Khirnov authored
This is required by the new API.
-
- 23 Jul, 2014 1 commit
-
-
Andrey Utkin authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 21 Jul, 2014 2 commits
-
-
Luca Barbato authored
The options is useful to build position-independent executables on hardened systems (e.g. Android L and Gentoo Hardened).
-
Michael Niedermayer authored
Suggested-by: Andreas Cadhalpun Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 20 Jul, 2014 3 commits
-
-
Andreas Cadhalpun authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Clément Bœsch authored
This partially reverts 9ce64ba1. FATE still needs it until its design is updated to the new website version.
-
- 19 Jul, 2014 1 commit
-
-
db0 authored
Signed-off-by:
db0 <db0company@gmail.com> Signed-off-by:
Clément Bœsch <u@pkh.me>
-
- 18 Jul, 2014 1 commit
-
-
Andrey Utkin authored
Reviewed-by:
Stefano Sabatini <stefasab@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 17 Jul, 2014 6 commits
-
-
Nicolas George authored
With remote displays supporting the MIT-SHM extension, the extension is detected and used, but attaching fails asynchronously.
-
Stefano Sabatini authored
-
Andrey Utkin authored
Allow to dynamically evaluate the font color. Signed-off-by:
Stefano Sabatini <stefasab@gmail.com>
-
Andrey Utkin authored
It evaluates expression and outputs it as integer value, using specified format. Address trac ticket #3699. Signed-off-by:
Stefano Sabatini <stefasab@gmail.com>
-
Stefano Sabatini authored
-
Simon Thelen authored
Make the segment muxer keep segment_list_size segments instead of segment_list_size + 1 segments. This patch also changes the documentation for segment_list_size to reduce possible confusion over how many segments are kept. this allows the segment list to be limited to containing only one segment which used to be impossible because a segment_list_size of 0 kept all the segments and a segment_list_size of 1 kept 2 segments. Signed-off-by:
Simon Thelen <ffmpeg-dev@c-14.de> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 16 Jul, 2014 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 15 Jul, 2014 3 commits
-
-
Marc Jeffreys authored
Fixes ticket #3758 Reviewed-by:
Andrey Utkin <andrey.krieger.utkin@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Vignesh Venkatasubramanian authored
This patch adds the ability to generate WebM DASH manifest XML using ffmpeg. A sample command line would be as follows: ffmpeg \ -f webm_dash_manifest -i video1.webm \ -f webm_dash_manifest -i video2.webm \ -f webm_dash_manifest -i audio1.webm \ -f webm_dash_manifest -i audio2.webm \ -map 0 -map 1 -map 2 -map 3 \ -c copy \ -f webm_dash_manifest \ -adaptation_sets “id=0,streams=0,1 id=1,streams=2,3” \ manifest.xml It works by exporting necessary fields as metadata tags in matroskadec and use those values to write the appropriate XML fields as per the WebM DASH Specification [1]. Some ideas are adopted from webm-tools project [2]. [1] https://sites.google.com/a/webmproject.org/wiki/adaptive-streaming/webm-dash-specification [2] https://chromium.googlesource.com/webm/webm-tools/+/master/webm_dash_manifest/Signed-off-by:
Vignesh Venkatasubramanian <vigneshv@google.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Timothy Gu authored
Signed-off-by:
Timothy Gu <timothygu99@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 14 Jul, 2014 2 commits
-
-
Michael Niedermayer authored
The AVStream.parser field is considered private and its location cannot be preserved while preserving also ABI compatibility to libav, as libav added fields before it. Some tools like ffmpeg.c access this field though Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Muhammad Faiz authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-