summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* j2kdec: Check for interger overflow in tile array allocationMichael Niedermayer2011-12-241-0/+3
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* j2kdec: fix division by zero, check tile dimensions for validityMichael Niedermayer2011-12-241-0/+3
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lzo: fix memcpy_backptr() with 0 offsetMichael Niedermayer2011-12-241-1/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_drawtext: select YUV color for drawbox() in case YUV colorspace is usedStefano Sabatini2011-12-241-1/+1
| | | | | Fix box alpha rendering when a YUV colorspace is selected, in particular fix trac ticket #763.
* Make the palette in Quake II CIN files opaque and increase its dynamics.Carl Eugen Hoyos2011-12-241-1/+3
|
* Make the palette in Wing Commander III mve files opaque.Carl Eugen Hoyos2011-12-241-1/+1
|
* Make mov palette opaque or load alpha if present.Carl Eugen Hoyos2011-12-241-8/+7
|
* Make the avi palette opaque.Carl Eugen Hoyos2011-12-241-6/+2
|
* doc: build: TEXIDEP: Recognize verbatim includesAlexander Strasser2011-12-241-1/+1
| | | | | | | | When generating the .dep files for .texi sources, verbatim includes (@verbatiminclude) should also be taken into account. Signed-off-by: Alexander Strasser <eclipse7@gmx.net> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* build: Try to find fate_config.sh.template in source pathAlexander Strasser2011-12-241-0/+1
| | | | | | | | The FATE documentation depends on the mentioned file. But that did break out of tree builds because the file was not found. Signed-off-by: Alexander Strasser <eclipse7@gmx.net> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libopenjpeg: support decoding with bits per pixel greater than 8Jean First2011-12-241-1/+31
| | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Approved-by: Alex Zhukov
* Merge remote-tracking branch 'shariman/wmall'Michael Niedermayer2011-12-241-32/+86
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * shariman/wmall: Perform dequantization of channel coefficients Perform inverse inter-channel decorrelation and ac-filter Implement revert_inter_ch_decorr() and revert_acfilter() Enable inverse-MCLMS filter Fix inverse-MCLMS filtering routines Do not update buffers in case no speed change is necessary Use int for channel_coeffs instead of int16_t Conflicts: libavcodec/wmalosslessdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Perform dequantization of channel coefficientsMashiat Sarker Shakkhar2011-12-231-2/+7
| |
| * Perform inverse inter-channel decorrelation and ac-filterMashiat Sarker Shakkhar2011-12-231-0/+4
| |
| * Implement revert_inter_ch_decorr() and revert_acfilter()Mashiat Sarker Shakkhar2011-12-231-0/+35
| |
| * Enable inverse-MCLMS filterMashiat Sarker Shakkhar2011-12-221-0/+2
| |
| * Fix inverse-MCLMS filtering routinesMashiat Sarker Shakkhar2011-12-221-27/+31
| |
| * Do not update buffers in case no speed change is necessaryMashiat Sarker Shakkhar2011-12-091-2/+6
| |
| * Use int for channel_coeffs instead of int16_tMashiat Sarker Shakkhar2011-12-091-1/+1
| |
* | release_notes: merge back changes from our 0.9 to masterMichael Niedermayer2011-12-241-3/+3
| | | | | | | | | | | | seems i have forgotten this Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | RELEASE_NOTES: remove possibly ofensive sounding wordingMichael Niedermayer2011-12-241-5/+3
| | | | | | | | | | | | from after the merge that i missed and do other general cleanup Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-12-246-47/+32
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
| * | vp3dec: Check coefficient index in vp3_dequant()Reinhard Tartler2011-12-231-2/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
| * | svq1dec: call avcodec_set_dimensions() after dimensions changed.Michael Niedermayer2011-12-231-0/+1
| | | | | | | | | | | | | | | | | | | | | Fixes NGS00148, CVE-2011-4579 Found-by: Phillip Langlois Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
| * | Prepare for 0.8_beta1 snapshot releaseReinhard Tartler2011-12-233-29/+28
| | |
| * | threads: check defines before using them in automatic thread detectionJanne Grunau2011-12-231-2/+2
| | |
| * | pthread: include sys/types.h before sys/sysctl.hJanne Grunau2011-12-231-1/+1
| | | | | | | | | | | | Fixes compilation on FreeBSD with clang 3.
| * | 4xm: remove unused variables.Anton Khirnov2011-12-231-3/+0
| | |
| * | h264: Fix a possible overread in decode_nal_units()Alexander Strange2011-12-231-1/+1
| | | | | | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * | allfilters: fix type of avfilter_vsrc_buffer.Anton Khirnov2011-12-231-1/+1
| | |
| * | w32thread: call ResetEvent() in pthread_cond_broadcast().Sergey Radionov2011-12-221-1/+2
| | | | | | | | | | | | | | | | | | | | | Also add "volatile" to broadcast flag (since it is used from multiple threads). Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* | | avio: fix handling of , in urlsMichael Niedermayer2011-12-231-1/+2
| | | | | | | | | | | | | | | | | | Fixes Ticket805 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | swr: fix swresample_version()Michael Niedermayer2011-12-232-1/+5
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | flvdec: disable new midstream param change code not only for h264 but all cases.Michael Niedermayer2011-12-231-1/+1
| | | | | | | | | | | | | | | | | | It breaks some samples and iam not aware of one that it fixes. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | Revert "doc: build: TEXIDEP: Recognize verbatim includes"Michael Niedermayer2011-12-231-1/+1
| | | | | | | | | | | | | | | | | | This reverts commit e5cbf24e45ed21178674fff8f485d919128b793c. This commits breaks out of tree builds
* | | pthread: sysctl.h needs param.h on openbsdMichael Niedermayer2011-12-231-0/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | threads: check defines before using them in automatic thread detectionJanne Grunau2011-12-231-2/+2
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | pthread: include sys/types.h before sys/sysctl.hJanne Grunau2011-12-231-1/+1
| | | | | | | | | | | | | | | | | | Fixes compilation on FreeBSD with clang 3. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | Make systematic palette opaque.Carl Eugen Hoyos2011-12-231-1/+1
| | |
* | | Release buffers after encoding svq1.Carl Eugen Hoyos2011-12-231-0/+4
| | | | | | | | | | | | Fixes ticket #820.
* | | Fix a possible endless loop when decoding aac.Carl Eugen Hoyos2011-12-231-2/+2
| | | | | | | | | | | | Fixes ticket #789.
* | | libavfilter: increase LIBAVFILTER_VERSION_MICRO to 100 like the other libs.Michael Niedermayer2011-12-232-1/+2
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | h264: Decode short VUI without errorMichael Niedermayer2011-12-231-1/+2
| | | | | | | | | | | | | | | | | | Fixes 47j9R7PXBep.mov Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-12-2348-84/+291
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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>
| * | build: fix standalone compilation of OMA muxerDiego Biurrun2011-12-231-1/+1
| | | | | | | | | | | | The muxer depends on the id3v2 writing code, so link against it.
| * | build: fix standalone compilation of Microsoft XMV demuxerDiego Biurrun2011-12-231-1/+1
| | | | | | | | | | | | The demuxer depends on the RIFF codec tags code, so link against it.
| * | build: fix standalone compilation of Core Audio Format demuxerDiego Biurrun2011-12-231-1/+2
| | | | | | | | | | | | | | | The demuxer depends on code from mov.c, which in turn depends on code from mov_chan.c, so link against it.
| * | kvmc: fix invalid readsGaurav Narula2011-12-231-16/+66
| | | | | | | | | | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>
| * | 4xm: Add a check in decode_i_frame to prevent buffer overreadsShitiz Garg2011-12-221-3/+12
| | | | | | | | | | | | | | | | | | Fixes bugzilla #135 Signed-off-by: Janne Grunau <janne-libav@jannau.net>
| * | adpcm: fix IMA SMJPEG decodingPaul B Mahol2011-12-221-5/+9
| | | | | | | | | | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>
OpenPOWER on IntegriCloud