- 05 Jan, 2012 4 commits
-
-
Michael Niedermayer authored
* cus/stable: ffplay: fix invalid wanted_channel_layout calculation ffplay: honor SDL_AUDIO_CHANNELS and make sure to use SDL supported number of audio channels Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Fixes ticket #838. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Michael Niedermayer authored
* qatar/master: (46 commits) mtv: Make sure audio_subsegments is not 0 v4l2: use V4L2_FMT_FLAG_EMULATED only if it is defined avconv: add symbolic names for -vsync parameters flvdec: Fix compiler warning for uninitialized variables rtsp: Fix compiler warning for uninitialized variable ulti: convert to new bytestream API. swscale: Use standard multiple inclusion guards in ppc/ header files. Place some START_TIMER invocations in separate blocks. v4l2: list available formats v4l2: set the proper codec_tag v4l2: refactor device_open v4l2: simplify away io_method v4l2: cosmetics v4l2: uniform and format options v4l2: do not force interlaced mode avio: exit early in fill_buffer without read_packet vc1dec: fix invalid memory access for small video dimensions rv34: fix invalid memory access for small video dimensions rv34: joint coefficient decoding and dequantization avplay: Don't call avio_set_interrupt_cb(NULL) ... Conflicts: Changelog avconv.c doc/APIchanges doc/indevs.texi libavcodec/adxenc.c libavcodec/dnxhdenc.c libavcodec/h264.c libavdevice/v4l2.c libavformat/flvdec.c libavformat/mtv.c libswscale/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
- 04 Jan, 2012 36 commits
-
-
Michael Niedermayer authored
This reverts commit 66f71f3b. This causes regressions with RDT.
-
Michael Niedermayer authored
qatar does this too but clobbers the AVPacket.duration by approximate values. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Author: Michael Niedermayer <michaelni@gmx.at> Date: Thu Nov 3 22:38:10 2011 +0100 lavf: fix null pointer dereference in rdt Signed-off-by: Michael Niedermayer <michaelni@gmx.at> This is no longer needed and causes various problems with RTSP Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Shitiz Garg authored
audio_subsegments would be 0 and cause floating point exceptions Fixes bugzilla #144 Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
-
Michael Niedermayer authored
This possibly makes part of the CVE-2011-3895 fix unneeded. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Chris Evans authored
BUG=101458 Review URL: http://codereview.chromium.org/8414025 Fixes second part of CVE-2011-3895 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Chris Evans authored
BUG=101458 Review URL: http://codereview.chromium.org/8413019 This fixes part of 2011-3895 bigned-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>
-
Chris Evans authored
decoding. BUG=100543 Review URL: http://codereview.chromium.org/8365014 This fixes 25% of CVE-2011-3893 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Chris Evans authored
a realloc() BUG=100492 Review URL: http://codereview.chromium.org/8366004 Fixes: 1 of 2 for CVE-2011-3893 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Janne Grunau authored
V4L2_FMT_FLAG_EMULATED was added in 2.6.32.
-
Anton Khirnov authored
-
Jean First authored
These can't be used uninitialized in practice, but the compiler doesn't realize it. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Jean First authored
This one won't ever be used uninitialized in practice, but the compiler doesn't realize it. Signed-off-by: Martin Storsjö <martin@martin.st>
-
Philippe Saint-Pierre authored
Reviewed-by: Thilo Borgmann
-
Ronald S. Bultje authored
-
Andrew Ryan authored
-
Carl Eugen Hoyos authored
Found-by: Paul B Mahol
-
Diego Biurrun authored
-
Carl Eugen Hoyos authored
Reviewed-by: Derek Buitenhuis Reviewed-by: Paul B Mahol
-
Carl Eugen Hoyos authored
Reviewed-by: Derek Buitenhuis Reviewed-by: Paul B Mahol
-
Carl Eugen Hoyos authored
Fixes ticket #525. Reviewed-by: Paul B Mahol
-
Diego Biurrun authored
This fixes compilation failures related to START_TIMER/STOP_TIMER macros and -Werror=declaration-after-statement. START_TIMER declares variables and thus may not be placed after statements outside of a new block.
-
Clément Bœsch authored
-
Clément Bœsch authored
-
Luca Barbato authored
Make use of the experimental framesize enumeration ioctl if available.
-
Luca Barbato authored
Unbreak direct streamcopy.
-
Luca Barbato authored
Check capabilities directly in the function, further simplify the code.
-
Luca Barbato authored
Only mmap is supported.
-
Luca Barbato authored
-
Luca Barbato authored
-
Luca Barbato authored
Video4linux2 supports both interlaced and non-interlaced mode, do not ask for interlaced if not necessary.
-
Janne Grunau authored
Fixes an invalid free() with ass in avi. The sample in bug 98 passes parts of AVPacket.data as buffer for the AVIOContext. Since the packet is quite large fill_buffer tries to reallocate the buffer before doing nothing. Fixes bug 98.
-
John Brooks authored
For small video dimensions, these calculations of the upper bound for pixel access may have a negative result. Using an unsigned comparison to bound a potentially negative value only works if the greater operand is non-negative. Fixed by doing edge emulation when the upper bound is probably negative, everywhere that this pattern appears. Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
-
John Brooks authored
For small video dimensions calculations of the upper bound for pixel access may result in negative value. Using an unsigned comparison works only if the greater operand is non-negative. This is fixed by doing edge emulation explicitly for such conditions. Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
-