- 02 May, 2020 1 commit
-
-
Marton Balint authored
Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 26 Apr, 2020 1 commit
-
-
Mark Thompson authored
The ad-hoc libmfx setup code is the only place its still used, so move it into that file.
-
- 16 Apr, 2020 1 commit
-
-
Andreas Rheinhardt authored
The data of an attachment file is put into an AVCodecParameter's extradata. The corresponding size field has type int, yet there was no check for the size to fit into an int. As a consequence, it was possible to create extradata with negative size (by using a big enough max_alloc). Other errors were also possible: If SIZE_MAX < INT64_MAX (e.g. on 32bit systems) then the file size might be truncated before the allocation; and avio_read() takes an int, too, so one would not have read as much as one desired. Furthermore, the extradata is now padded as is required. Reviewed-by:
Michael Niedermayer <michael@niedermayer.cc> Signed-off-by:
Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
- 14 Apr, 2020 1 commit
-
-
Jun Zhao authored
When QSV is enabled in FFmpeg, the command "ffmpeg -hwaccels" shows a duplicate entry in acceleration methods for QSV: Hardware acceleration methods: vaapi qsv drm opencl qsv Reviewed-by:
Mark Thompson <sw@jkqxz.net> Signed-off-by:
Jun Zhao <barryjzhao@tencent.com>
-
- 19 Mar, 2020 1 commit
-
-
Andreas Rheinhardt authored
PRId64 and PRIu64 already expand to the complete specifier; adding another 'd' at the end is wrong and just leads to warnings that say that only an option like '-frames:v 2d' will be used, although said option won't be accepted at all ('Expected int64 for frames:v but found 2d'). Signed-off-by:
Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 08 Mar, 2020 2 commits
-
-
Marton Balint authored
This is redundant after the last patch and also fixes ticket #7712. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 07 Mar, 2020 1 commit
-
-
Timo Rothenpieler authored
This ensures old commandlines using -hwaccel cuvid don't break due to the recent removal of the the cuvid-specific hwaccel bringup.
-
- 03 Mar, 2020 1 commit
-
-
James Almer authored
It's a duplicate of the properly implemented nvdec libavcodec hwaccel Reviewed-by:
Timo Rothenpieler <timo@rothenpieler.org> Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 29 Feb, 2020 1 commit
-
-
Andreas Rheinhardt authored
Fixes #8094. Signed-off-by:
Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 30 Jan, 2020 1 commit
-
-
Steven Liu authored
Reviewed-by:
Michael Niedermayer <michael@niedermayer.cc> Signed-off-by:
Steven Liu <lq@chinaffmpeg.org>
-
- 28 Dec, 2019 1 commit
-
-
Carl Eugen Hoyos authored
Fixes ticket #8447.
-
- 06 Nov, 2019 1 commit
-
-
Andreas Rheinhardt authored
Introduced in ed3c317d. Signed-off-by:
Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 18 Oct, 2019 1 commit
-
-
Jun Zhao authored
add error handle if av_asprintf return null. Reviewed-by:
Michael Niedermayer <michael@niedermayer.cc> Signed-off-by:
Jun Zhao <barryjzhao@tencent.com>
-
- 27 Sep, 2019 2 commits
-
-
Lou Logan authored
Signed-off-by:
Lou Logan <lou@lrcd.com>
-
Lou Logan authored
Signed-off-by:
Lou Logan <lou@lrcd.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 17 Sep, 2019 1 commit
-
-
Andreas Rheinhardt authored
Fixes ticket #8154. Signed-off-by:
Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 03 Jul, 2019 1 commit
-
-
Jun Zhao authored
Respect default disposition when select audio/video Reviewed-by:
Michael Niedermayer <michael@niedermayer.cc> Signed-off-by:
Jun Zhao <barryjzhao@tencent.com>
-
- 14 Jan, 2019 1 commit
-
-
Carl Eugen Hoyos authored
Fixes ticket #4184.
-
- 03 Jan, 2019 1 commit
-
-
Gyan Doshi authored
-vn/-an/-sn/-dn now works for input. Streams are still registered in input_streams but they can't be automatically selected or mapped or filtered.
-
- 02 Jan, 2019 1 commit
-
-
Gyan Doshi authored
Fully discarded streams can't be selected for output or mapped or filtered. Previously, a few packets from such streams, probably buffered for stream probing, would get smuggled into output files. Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 30 Sep, 2018 1 commit
-
-
xiaofeng authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 17 Sep, 2018 1 commit
-
-
Gyan Doshi authored
Fixes #4655
-
- 26 Jun, 2018 1 commit
-
-
Gyan Doshi authored
Prioritize -ss
-
- 08 Jun, 2018 1 commit
-
-
Gyan Doshi authored
-
- 04 Jun, 2018 1 commit
-
-
Vishwanath Dixit authored
Forced key frames generation functionality was assuming the first PTS value as zero, but, when 'copyts' is enabled, the first PTS can be any big number. This was eventually forcing all the frames as key frames. To resolve this issue, update has been made to use first input pts as reference pts. Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 25 Apr, 2018 1 commit
-
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
- 16 Mar, 2018 1 commit
-
-
Jun Zhao authored
Support dump bit stream filter option in ffmpeg -h full and ffmpeg -h bsf=FooBar. Signed-off-by:
Jun Zhao <mypopydev@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 24 Feb, 2018 1 commit
-
-
Jun Zhao authored
ffmpeg -h display "max_error_rate" option help information have been cut off, the root cause is used a wrong initial order. Signed-off-by:
Jun Zhao <jun.zhao@intel.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 28 Jan, 2018 1 commit
-
-
Marton Balint authored
Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 07 Jan, 2018 1 commit
-
-
Carl Eugen Hoyos authored
Fixes a warning: fftools/ffmpeg_opt.c:2057:21: warning: variable 'file_oformat' set but not used
-
- 06 Jan, 2018 1 commit
-
-
Rostislav Pehlivanov authored
Signed-off-by:
Rostislav Pehlivanov <atomnuker@gmail.com>
-
- 04 Jan, 2018 1 commit
-
-
James Almer authored
Reviewed-by:
Michael Niedermayer <michael@niedermayer.cc> Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 28 Nov, 2017 2 commits
-
-
Carl Eugen Hoyos authored
Fixes a warning: fftools/ffmpeg_opt.c:804:29: warning: assignment discards ‘const’ qualifier from pointer target type
-
Pan Bian authored
The function avformat_alloc_context() will return a NULL pointer on failure. However, in function read_ffserver_streams(), its return value is not validated and the subsequent dereference may result in a bad memory access bug. Check its return value against NULL and avoid potential NULL dereference. Signed-off-by:
Pan Bian <bianpan2016@163.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 26 Nov, 2017 1 commit
-
-
Mark Thompson authored
Removes specific support for all hwaccels supported by the generic code (DXVA2, D3D11VA, NVDEC, VAAPI and VDPAU).
-
- 19 Nov, 2017 1 commit
-
-
Vitaly _Vi Shukela authored
For some strange reason "-t" option was only implemented for input files while both "-t" and "-to" were available for use for output files. This made extracting a range from input file inconvenient. This patch enables -to option for input so one can do ffmpeg -ss 1:23:20 -to 1:27:22.3 -i myinput.mkv ... Signed-off-by:
Vitaly _Vi Shukela <vi0oss@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 15 Nov, 2017 1 commit
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 10 Nov, 2017 1 commit
-
-
Anton Khirnov authored
Some parts of the code are based on a patch by Timo Rothenpieler <timo@rothenpieler.org> Merges Libav commit b9129ec4. Due to the name clash with our cuvid decoder, rename it to nvdec. This commit also changes the Libav code to dynamic loading of the cuda/cuvid libraries. Signed-off-by:
Timo Rothenpieler <timo@rothenpieler.org>
-
- 29 Oct, 2017 1 commit
-
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-