summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | vc1dec: add missing terminating element to mpeg4_video_profilesMichael Niedermayer2012-04-16
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1dec: check end_mb_y / start_mb_y validityMichael Niedermayer2012-04-16
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | flvdec: allocate large enough buffer so get_bits() doesnt overreadMichael Niedermayer2012-04-16
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffv1: attempt to workaround intel CC fate issue.Michael Niedermayer2012-04-16
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | adxdec: Check available space before decoding block.Michael Niedermayer2012-04-16
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | segafilm: make the loop condition in film_read_packet() match the contents.Michael Niedermayer2012-04-16
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/aresample: properly propagate pts == AV_NOPTS_VALUE;Robert Nagy2012-04-16
| | | | | | | | Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* | yadif: fixed missing error handling for poll_frame.Robert Nagy2012-04-15
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | sws: remove cliping in yuv2rgb code.Michael Niedermayer2012-04-15
| | | | | | | | | | | | This code should not be needed and it slows things down. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | mov: reset dref_count on realloc to keep values consistent.Michael Niedermayer2012-04-15
| | | | | | | | | | | | This fixes a potential crash. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-04-15
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: doc: Improve suggested Emacs settings for our coding style. utvideo: Remove unused variable 'src_size' mov: free memory on header parsing failure mov: fix leaking memory with multiple drefs. swscale: clip before assigning tables in RGB output functions. swscale: fix off-by-one in second coefficient in bilinear filters. Conflicts: libavformat/mov.c libswscale/output.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * doc: Improve suggested Emacs settings for our coding style.Diego Biurrun2012-04-15
| | | | | | | | | | | | Switch from changing global values to defining a separate C style and add appropriate settings for indenting assignments that span more than one line.
| * utvideo: Remove unused variable 'src_size'Derek Buitenhuis2012-04-15
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * mov: free memory on header parsing failureDale Curtis2012-04-14
| | | | | | | | | | | | Call mov_read_close when mov_read_header fails. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
| * mov: fix leaking memory with multiple drefs.Dale Curtis2012-04-14
| | | | | | | | | | | | | | | | | | Instead of allocating over the original, free first. MOVStreamContext is zero initialized so no double free will occur. Same style as other fixes for the same problem in this file. Signed-off-by: Dale Curtis <dalecurtis@chromium.org> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
| * swscale: clip before assigning tables in RGB output functions.Ronald S. Bultje2012-04-14
| |
| * swscale: fix off-by-one in second coefficient in bilinear filters.Ronald S. Bultje2012-04-14
| | | | | | | | | | If coefficient A is 12-bits xixed-point number "X", then the other coefficient is (1 << 12) - X, not (1 << 12) - X - 1.
* | indeo5: check for unsupported luma block typeMichael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | tiffdec: check overread for packbitsMichael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | alsdec: fix number of decoded samples in first sub-block in BGMC mode.Thilo Borgmann2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lzw: check for overreadMichael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | pngdec: check bits_per_pixel for palette mode.Michael Niedermayer2012-04-15
| | | | | | | | | | | | | | This fixes a out of array read Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | png: make sure the previous frames dimensions match before using it as referenceMichael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | error: ensure error codes are signed negative ints.Nicolas George2012-04-15
| | | | | | | | | | | | | | Based on a patch by Robert Nagy <ronag89@gmail.com>. It makes a difference when the error code is immediately cast into a larger integer, such as an int64_t.
* | ff_lag_rac_init: fix signedness error leading to out of array read.Michael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | qdm2_fft_decode_tones: fix infinite loopMichael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | qdm2: Check vlc_stage3_values index.Michael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Set bits_per_coded_sample when encoding Microsoft Video-1.Carl Eugen Hoyos2012-04-15
| | | | | | | | Fixes ticket #1193.
* | Support decoding unaligned rgb24 lagarith.Carl Eugen Hoyos2012-04-15
| | | | | | | | Fixes ticket #1214.
* | xan: check for vector_segment overreadMichael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | eatgv: check vector_bitsMichael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | tiny_psnr: reindent after last commit.Nicolas George2012-04-15
| |
* | tiny_psnr: support unseekable raw files.Nicolas George2012-04-15
| | | | | | | | | | | | | | If either one of the files if not seekable, do not try to read headers. It allows to use it with pipes on whole rawvideo data.
* | ff_ivi_decode_blocks: fix negative scan_pos case.Michael Niedermayer2012-04-15
| | | | | | | | | | | | | | Fixes out of global array read. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | indeo: Check allocated tile size in ff_ivi_process_empty_tile()Michael Niedermayer2012-04-15
| | | | | | | | | | | | | | | | This prevents writing into a too small array if some parameters changed without the tile being reallocated. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | indeo5: check tile size in decode_mb_info().Michael Niedermayer2012-04-15
| | | | | | | | | | | | | | | | This prevents writing into a too small array if some parameters changed without the tile being reallocated. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | configure: add dependencies for colormatrix test.Nicolas George2012-04-15
| |
* | indeo5: set transform_size like indeo4 does to prevent useage of too large ↵Michael Niedermayer2012-04-15
| | | | | | | | | | | | | | | | transforms. I dont know if this is needed, its a precautionary change. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | indeo4: check transform size.Michael Niedermayer2012-04-15
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | utvideo: Remove unused variable 'src_size'Derek Buitenhuis2012-04-15
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | mpegvideo_enc: fix dtsMichael Niedermayer2012-04-15
| | | | | | | | | | | | Fixes Ticket1200 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-04-14
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: vsrc_buffer: fix check from 7ae7c41. libxvid: Reorder functions to avoid forward declarations; make functions static. libxvid: drop some pointless dead code wmal: vertical alignment cosmetics wmal: Warn about missing bitstream splicing feature and ask for sample. wmal: Skip seekable_frame_in_packet. wmal: Drop unused variable num_possible_block_size. avfiltergraph: make the AVFilterInOut alloc/free API public graphparser: allow specifying sws flags in the graph description. graphparser: fix the order of connecting unlabeled links. graphparser: add avfilter_graph_parse2(). vsrc_buffer: allow using a NULL buffer to signal EOF. swscale: handle last pixel if lines have an odd width. qdm2: fix a dubious pointer cast WMAL: Do not try to read rawpcm coefficients if bits is invalid mov: Fix detecting there is no sync sample. tiffdec: K&R cosmetics avf: has_duration does not check the global one dsputil: fix optimized emu_edge function on Win64. Conflicts: doc/APIchanges libavcodec/libxvid_rc.c libavcodec/libxvidff.c libavcodec/tiff.c libavcodec/wmalosslessdec.c libavfilter/avfiltergraph.h libavfilter/graphparser.c libavfilter/version.h libavfilter/vsrc_buffer.c libswscale/output.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * vsrc_buffer: fix check from 7ae7c41.Anton Khirnov2012-04-14
| | | | | | | | The user submitted variable in this function is frame, not buf.
| * libxvid: Reorder functions to avoid forward declarations; make functions static.Diego Biurrun2012-04-14
| |
| * libxvid: drop some pointless dead codeDiego Biurrun2012-04-14
| |
| * wmal: vertical alignment cosmeticsMashiat Sarker Shakkhar2012-04-14
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * wmal: Warn about missing bitstream splicing feature and ask for sample.Mashiat Sarker Shakkhar2012-04-14
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * wmal: Skip seekable_frame_in_packet.Mashiat Sarker Shakkhar2012-04-14
| | | | | | | | | | | | | | There is no point in storing the value in a variable, since it is not used anywhere else in the decoder. Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * wmal: Drop unused variable num_possible_block_size.Mashiat Sarker Shakkhar2012-04-14
| | | | | | | | | | | | This is probably a leftover from WMA Pro. Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * avfiltergraph: make the AVFilterInOut alloc/free API publicStefano Sabatini2012-04-14
| | | | | | | | | | | | | | This is required for letting applications to create and destroy AVFilterInOut structs in a convenient way. Signed-off-by: Anton Khirnov <anton@khirnov.net>