- 02 Jun, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 01 Jun, 2013 32 commits
-
-
Paul B Mahol authored
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
Michael Niedermayer authored
* cus/stable: ffplay: detect when the created overlay buffers are not valid for the wanted overlay height ffplay: do not allow wider window than 16383 ffplay: use 0 frame delay if redisplaying an already displayed frame ffplay: use more sane frame timer resetting logic ffplay: only update pts if not redisplaying a frame ffplay: fix compute_target_delay to better handle frames with long durations ffplay: if playing only audio or video only, show the master clock diff in status line ffplay: factorize clock functions ffplay: decrease video picture queue size to 3 Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
Stefano Sabatini authored
It was ported to a native libavfilter filter.
-
Stefano Sabatini authored
-
Stefano Sabatini authored
-
Stefano Sabatini authored
Do not read padding or out-of-buffer values when computing the output value for a pixel close to the image buffer edge. This avoids non visible artifacts which affected the output checksum. See thread: Subject: [FFmpeg-devel] [PATCH] lavfi/mp/mcdeint: avoid uninited data read Date: Thu, 30 May 2013 18:57:14 +0200
-
Clément Bœsch authored
-
Carl Eugen Hoyos authored
Fixes ticket #2614.
-
Clément Bœsch authored
-
Matthew Heaney authored
Currently the WebVTT demuxer parses the cues but throws away the cue id (the optional first line of the cue) and cue settings (the optional rendering instructions that follow the timestamp). However, in order to write inband text tracks (to WebM files), the entire cue payload from the WebVTT source must be preserved. This commit makes no change to the data part of the output buffer packet (where the actual cue text is stored), but does add the cue id and settings as a side data items, if they're present in the cue. Existing code that cares only about the data part of the packet can continue to ignore the side data. There are two new packet data type flags, AV_PKT_DATA_WEBVTT_IDENTIFIER and AV_PKT_DATA_WEBVTT_SETTINGS.
-
Clément Bœsch authored
The padding data is assumed to be 0 in several places, notably in subtitles. This problem was not detected with fate-sub-srt test because the first element of the side data (x1) is 0 in the test, so the trailing side data present in the packet wasn't read by the decoder. The issue can be observed with a large enough x1. It is also noted in FF_INPUT_BUFFER_PADDING_SIZE doxy that MPEG bitstreams require that padding with 0, so it might fix other issues.
-
Michael Niedermayer authored
This keeps the structure fields more consistent after cleanup Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Marton Balint authored
Fixes cases when the picture height was bigger than the maximum supported overlay height... Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
SDL surface pitch is 16bit, to avoid possible overflows, we limit the window width to 16383. Fixes ticket #2428. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
With the previous patches this finally fixes ticket #1707. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Showing A-V diff has no use if there is no audio and video stream, but showing the audio or video clock difference to the master clock can be useful. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
There should be no change in functionality. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
It was raised to 4 because of a theoretical issue, if we ensure that we do not return from the display function without popping one picture from the queue, then its OK to use the old size. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Clément Bœsch authored
This makes no difference in practice since w & h are hardcoded to 512.
-
Clément Bœsch authored
-
Michael Niedermayer authored
* cehoyos/master: Fix compilation with --disable-everything --enable-encoder=jpeg2000 Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
4400->2800 cycles Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
4700 -> 2700 cycles (sandybridge i7) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Carl Eugen Hoyos authored
The JPEG2000 encoder depends on the discrete wavelet transform.
-
James Almer authored
Currently, standard tables like AV_CRC_32_IEEE and such are being generated (or provided in case the user compiles with hardcoded tables) with only 257 elements. We're missing a considerable boost in performance by not making them with a size of 1024 elements instead. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* qatar/master: indeo4: expand allowed quantiser range configure: icl: Merge -Qdiag-error parameters Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '14fb9d3d': configure: Separate commonalities in msvc and icl flags Conflicts: configure Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
Kostya Shishkov authored
Indeo 4 has quantiser range 0-31 instead of 0-23 for Indeo 5, and clipping quantiser leads to incorrect quantisation and DC prediction on low-quality videos. This fixes bug 259.
-
Clément Bœsch authored
-
- 31 May, 2013 7 commits
-
-
Paul B Mahol authored
It's redundant now as check in done in demuxer instead. Signed-off-by: Paul B Mahol <onemda@gmail.com>
-
James Almer authored
Since we don't check for seek table integrity in the decoder anymore, check it in the demuxer instead (Only tta files are guaranteed to have one, and it should be valid there). Check also for header integrity, since the check done in the decoder is ignored because matroska doesn't store the header at all. Signed-off-by: James Almer <jamrial@gmail.com>
-
Alex Smith authored
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Alex Smith authored
Allows for easier handling of flags that may be specific to icl or msvc. Furthermore, simplify the handling of warnings and remarks thanks to icl's support of -Wall on Windows. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Michael Niedermayer authored
* lukaszmluki/master: ftp: enhanced error handling ftp: reconnect on seek ftp: move common commands code to function ftp: enhanced status code handling ftp: reconnect on read ftp: move create control connection to function ftp: credentials moved into FTPContext ftp: rename function name ftp: formatting and typos fixes Merged-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>
-