- 24 Dec, 2011 2 commits
-
-
Michael Niedermayer authored
seems i have forgotten this Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
from after the merge that i missed and do other general cleanup Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 23 Dec, 2011 26 commits
-
-
Michael Niedermayer authored
* qatar/master: vp3dec: Check coefficient index in vp3_dequant() svq1dec: call avcodec_set_dimensions() after dimensions changed. Prepare for 0.8_beta1 snapshot release threads: check defines before using them in automatic thread detection pthread: include sys/types.h before sys/sysctl.h 4xm: remove unused variables. h264: Fix a possible overread in decode_nal_units() allfilters: fix type of avfilter_vsrc_buffer. w32thread: call ResetEvent() in pthread_cond_broadcast(). Conflicts: Changelog RELEASE doc/RELEASE_NOTES libavcodec/pthread.c libavcodec/vp3.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes Ticket805 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
It breaks some samples and iam not aware of one that it fixes. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
This reverts commit e5cbf24e. This commits breaks out of tree builds
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Janne Grunau authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Janne Grunau authored
Fixes compilation on FreeBSD with clang 3. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Reinhard Tartler authored
Based on a patch by Michael Niedermayer <michaelni@gmx.at> Fixes NGS00145, CVE-2011-4352 Found-by: Phillip Langlois Signed-off-by: Reinhard Tartler <siretart@tauware.de>
-
Michael Niedermayer authored
Fixes NGS00148, CVE-2011-4579 Found-by: Phillip Langlois Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Reinhard Tartler authored
-
Janne Grunau authored
-
Janne Grunau authored
Fixes compilation on FreeBSD with clang 3.
-
Carl Eugen Hoyos authored
-
Carl Eugen Hoyos authored
Fixes ticket #820.
-
Carl Eugen Hoyos authored
Fixes ticket #789.
-
Anton Khirnov authored
-
Alexander Strange authored
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Fixes 47j9R7PXBep.mov Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Sergey Radionov authored
Also add "volatile" to broadcast flag (since it is used from multiple threads). Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-
Michael Niedermayer authored
* qatar/master: build: fix standalone compilation of OMA muxer build: fix standalone compilation of Microsoft XMV demuxer build: fix standalone compilation of Core Audio Format demuxer kvmc: fix invalid reads 4xm: Add a check in decode_i_frame to prevent buffer overreads adpcm: fix IMA SMJPEG decoding options: set minimum for "threads" to zero bsd: use number of logical CPUs as automatic thread count windows: use number of CPUs as automatic thread count linux: use number of CPUs as automatic thread count pthreads: reset active_thread_type when slice thread_init returrns early v410dec: include correct headers Drop ALT_ prefix from BITSTREAM_READER_LE name. lavfi: always build vsrc_buffer. ra144enc: zero the reflection coeffs if the filter is unstable sws: readd PAL8 to isPacked() mov: Don't stick the QuickTime field ordering atom in extradata. truespeech: fix invalid reads in truespeech_apply_twopoint_filter() Conflicts: configure libavcodec/4xm.c libavcodec/avcodec.h libavfilter/Makefile libavfilter/allfilters.c libavformat/Makefile libswscale/swscale_internal.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
When no data was available both the buffer thread as well as the main thread would block in select(), when data becomes available both should move forward and as data is read in the buffer thread the main thread would block in select() later the read data was put in the fifo but the main thread still would be blocked in select() until either the timeout or another packet would come in. This is solved in this commit by using a mutex and a condition variable Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
- 22 Dec, 2011 12 commits
-
-
Diego Biurrun authored
The muxer depends on the id3v2 writing code, so link against it.
-
Diego Biurrun authored
The demuxer depends on the RIFF codec tags code, so link against it.
-
Diego Biurrun authored
The demuxer depends on code from mov.c, which in turn depends on code from mov_chan.c, so link against it.
-
Michael Niedermayer authored
Prior to this a X bytes write could be seen as less than X bytes being available if the check was done at an unfortunate moment. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-
Gaurav Narula authored
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
-
Shitiz Garg authored
Fixes bugzilla #135 Signed-off-by: Janne Grunau <janne-libav@jannau.net>
-
Paul B Mahol authored
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
-
Janne Grunau authored
A negative number of threads does not make sense and 0 is used for autodetection. Adds a symbolic name for autodetection.
-
Janne Grunau authored
-
Janne Grunau authored
-
Janne Grunau authored
Use sched_getaffinity to determine the number of logical CPUs. Limits the number of threads to 16 since slice threading of H.264 seems to be buggy with more than 16 threads.
-
Janne Grunau authored
-