summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* bit_depth_template: use av_clip_uint8 over crop_tab.Michael Niedermayer2012-03-05
| | | | | | | | | | This fixes some global out of array reads and wrong cliping. No speed difference meassurable under clang on i5 also all important code paths on all important platforms should use SIMD. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* indeo3: move MV check up.Michael Niedermayer2012-03-05
| | | | | | | This adds checking for modes >= 10. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* cook: check decouple values.Michael Niedermayer2012-03-05
| | | | | | | This fixes a out of global array read in the cplscale* tables. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-03-05
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (27 commits) cmdutils: use new avcodec_is_decoder/encoder() functions. lavc: make codec_is_decoder/encoder() public. lavc: deprecate AVCodecContext.sub_id. libcdio: add a forgotten AVClass to the private context. swscale: remove "cpu flags" from -sws_flags description. proresenc: give user a possibility to alter some encoding parameters vorbisenc: add output buffer overwrite protection libopencore-amrnbenc: fix end-of-stream handling ra144enc: fix end-of-stream handling nellymoserenc: zero any leftover packet bytes nellymoserenc: use proper MDCT overlap delay qpeg: Use bytestream2 functions to prevent buffer overreads. swscale: make %rep unconditional. vp8: convert simple loopfilter x86 assembly to use named arguments. vp8: convert idct x86 assembly to use named arguments. vp8: convert mc x86 assembly to use named arguments. vp8: convert loopfilter x86 assembly to use cpuflags(). vp8: convert idct/mc x86 assembly to use cpuflags(). swscale: remove now unnecessary hack. x86inc: don't "bake" stack_offset in named arguments. ... Conflicts: cmdutils.c doc/APIchanges libavcodec/mpeg12.c libavcodec/options.c libavcodec/qpeg.c libavcodec/utils.c libavcodec/version.h libavdevice/libcdio.c tests/lavf-regression.sh Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * cmdutils: use new avcodec_is_decoder/encoder() functions.Anton Khirnov2012-03-04
| | | | | | | | Fixes listing encoders.
| * lavc: make codec_is_decoder/encoder() public.Anton Khirnov2012-03-04
| |
| * lavc: deprecate AVCodecContext.sub_id.Anton Khirnov2012-03-04
| | | | | | | | | | | | | | In most places where it's used, it's as a pointless write-only field. Only rv10 decoder actually reads from it, but it stores some internal version info in it. There is no reason for it to be in a public field.
| * libcdio: add a forgotten AVClass to the private context.Anton Khirnov2012-03-04
| |
| * swscale: remove "cpu flags" from -sws_flags description.Ronald S. Bultje2012-03-04
| |
| * proresenc: give user a possibility to alter some encoding parametersKostya Shishkov2012-03-04
| | | | | | | | | | This allows user to select quantisation matrix from different profile, stamp frames with custom vendor string and change target bitrate.
| * vorbisenc: add output buffer overwrite protectionJustin Ruggles2012-03-04
| |
| * libopencore-amrnbenc: fix end-of-stream handlingJustin Ruggles2012-03-04
| | | | | | | | | | | | Use CODEC_CAP_DELAY and CODEC_CAP_SMALL_LAST_FRAME to properly pad and flush the encoder at the end of encoding. This is needed in order to have all input samples decoded.
| * ra144enc: fix end-of-stream handlingJustin Ruggles2012-03-04
| | | | | | | | | | | | Use CODEC_CAP_DELAY and CODEC_CAP_SMALL_LAST_FRAME to properly pad and flush the encoder at the end of encoding. This is needed in order to have all input samples decoded.
| * nellymoserenc: zero any leftover packet bytesJustin Ruggles2012-03-04
| | | | | | | | fixes writing of uninitialized packet data
| * nellymoserenc: use proper MDCT overlap delayJustin Ruggles2012-03-04
| |
| * qpeg: Use bytestream2 functions to prevent buffer overreads.Aneesh Dogra2012-03-03
| | | | | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
| * swscale: make %rep unconditional.Ronald S. Bultje2012-03-03
| | | | | | | | Fixes pre-processing with latest versions of nasm.
| * vp8: convert simple loopfilter x86 assembly to use named arguments.Ronald S. Bultje2012-03-03
| |
| * vp8: convert idct x86 assembly to use named arguments.Ronald S. Bultje2012-03-03
| |
| * vp8: convert mc x86 assembly to use named arguments.Ronald S. Bultje2012-03-03
| |
| * vp8: convert loopfilter x86 assembly to use cpuflags().Ronald S. Bultje2012-03-03
| |
| * vp8: convert idct/mc x86 assembly to use cpuflags().Ronald S. Bultje2012-03-03
| |
| * swscale: remove now unnecessary hack.Ronald S. Bultje2012-03-03
| |
| * x86inc: don't "bake" stack_offset in named arguments.Loren Merritt2012-03-03
| | | | | | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
| * fate: Add sunrast regression testDerek Buitenhuis2012-03-03
| | | | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * wmaenc: fix m/s stereo encoding for the first frameJustin Ruggles2012-03-03
| | | | | | | | | | | | | | | | We need to set ms_stereo in encode_init() in order to avoid incorrectly encoding the first frame as non-m/s while flagging it as m/s. Fixes an uncomfortable pop in the left channel at the start of playback. CC:libav-stable@libav.org
| * wmaenc: return s->block_align instead of recalculating itJustin Ruggles2012-03-03
| |
| * wmaenc: check final frame size against output packet sizeJustin Ruggles2012-03-03
| | | | | | | | | | | | | | Currently we have an assert() that prevents the frame from being too large, but it is more user-friendly to give an error message instead of aborting on assert(). This condition is quite unlikely due to the minimum bit rate check in encode_init(), but it is still worth having.
| * wmaenc: require a large enough output buffer to prevent overwritesJustin Ruggles2012-03-03
| | | | | | | | | | | | | | | | The maximum theoretical frame size is around 17000 bytes. Although in practice it will generally be much smaller, we require a larger buffer just to be safe. CC: libav-stable@libav.org
| * wmaenc: limit allowed sample rate to 48kHzJustin Ruggles2012-03-03
| | | | | | | | | | | | | | | | | | ff_wma_init() allows up to 50kHz, but this generates an exponent band size table that requires 65 bands. The code assumes 25 bands in many places, and using sample rates higher than 48kHz will lead to buffer overwrites. CC:libav-stable@libav.org
| * wmaenc: limit block_align to MAX_CODED_SUPERFRAME_SIZEJustin Ruggles2012-03-03
| | | | | | | | | | | | | | | | | | | | This is near the theoretical limit for wma frame size and is the most that our decoder can handle. Allowing higher bit rates will just end up padding each frame with empty bytes. Fixes invalid writes for avconv when using very high bit rates. CC:libav-stable@libav.org
* | indeo3: Fix overreading requant_tab.Michael Niedermayer2012-03-04
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | indeo3: Check motion vectors.Michael Niedermayer2012-03-04
| | | | | | | | | | | | | | Fixes overread of reference frame. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libmpcodecs/vf_pp: import memleak fix from MPlayer.Nicolas George2012-03-04
| |
* | vf_mp: uninit filter chain.Nicolas George2012-03-04
| | | | | | | | Most of the code was taken from MPlayer's vf_uninit_filter_chain.
* | dsicinav: fix 10l bug introduced in 999d38f3a94eb963c073512e5dad7940456eb634Michael Niedermayer2012-03-04
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | pcm-mpeg: fix 10l condition flipMichael Niedermayer2012-03-04
| | | | | | | | | | | | Original issue Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind 10l bug Found-by: nevcairiel Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Fix alpha overflow when converting from RGBA64 to RGBA.Michael Niedermayer2012-03-04
| | | | | | | | Fixes converting the sample from ticket #503 to 32bit RGB.
* | lavfi: add blackdetect filterStefano Sabatini2012-03-04
| | | | | | | | Address trac ticket #901.
* | mmvideo: fix overreads of the input buffer.Michael Niedermayer2012-03-04
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dsicinvideo: validate buffer offset before copying pixels.Ronald S. Bultje2012-03-04
| | | | | | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable-LOOeJiBropLYtjvyW6yDsg@public.gmane.org Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | truemotion2: check motion vectors for validityMichael Niedermayer2012-03-04
| | | | | | | | | | | | | | Fixes out of array read Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | pngdec: validate length.Michael Niedermayer2012-03-04
| | | | | | | | | | | | | | Fixes out of array reading. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf: Do not compute the packet duration based on the bitrate if the ↵Michael Niedermayer2012-03-04
| | | | | | | | | | | | | | | | | | frame_size can be determined. This fixes issues when the bitrate is variable or inaccurate but the frame size has not been determined yet. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavf: factor out determinable_frame_size()Michael Niedermayer2012-03-04
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-03-04
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: tiertexseq: set correct block_align for audio tiertexseq: set audio stream start time to 0 voc/avs: Do not change the sample rate mid-stream. segafilm: use the sample rate as the time base for audio streams ea: fix audio pts psx-str: fix audio pts vqf: set packet duration tta demuxer: set packet duration mpegaudio_parser: do not ignore information from the first parsed frame mpegaudio_parser: be less picky about the start position thp: set audio packet durations avcodec: add a Vorbis parser to get packet duration vorbisdec: read the previous window flag for long windows lavc: free the output packet when encoding failed or produced no output. lavc: preserve avpkt->destruct in ff_alloc_packet(). lavc: clarify the meaning of AVCodecContext.frame_number. mpegts: Pad the packet buffer in handle_packet(). mpegts: Do not call read_sl_header() when no bytes remain in the buffer. Conflicts: libavcodec/mpegaudio_parser.c libavcodec/version.h libavformat/mpegts.c tests/ref/fate/pva-demux Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * tiertexseq: set correct block_align for audioJustin Ruggles2012-03-03
| |
| * tiertexseq: set audio stream start time to 0Justin Ruggles2012-03-03
| | | | | | | | | | Update FATE test to reflect delayed video due to the file having audio-only frames prior to the first frame with video.
| * voc/avs: Do not change the sample rate mid-stream.Justin Ruggles2012-03-03
| | | | | | | | | | Also, set the time base based on the sample rate. lavf-voc seek test updated to reflect slightly different seek points.
| * segafilm: use the sample rate as the time base for audio streamsJustin Ruggles2012-03-03
| |