summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* | lavf/utils: fix overestimation of the rational number density.Michael Niedermayer2011-10-03
| | | | | | | | | | | | Fixes Ticket498 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | mpegtsenc: Lift limit on PMT PIDLoren Osborn2011-10-03
| | | | | | | | Fixes Ticket518
* | libcdio: Fix missing avclass in contextchinshou2011-10-03
| | | | | | | | Fixes Ticket526
* | VP8: armv6 optimizations.Ronald S. Bultje2011-10-03
| | | | | | | | | | | | | | From 52.503s (~40fps) to 27.973sec (~80fps) decoding of 480p sintel trailer, i.e. a ~2x speedup overall, on a Nexus S. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avutil: bump for av_get_default_channel_layout()Michael Niedermayer2011-10-03
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-03
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: mpc8: check output buffer size before decoding mpc7: return error if packet is too small. mpc7: check output buffer size before decoding nellymoserdec: allocate float_buf only when decoding to int16 nellymoserdec: use NELLY_BUF_LEN instead of 128 nellymoserdec: use NELLY_BLOCK_LEN instead of 64 when appropriate. nellymoserdec: allow user to request SAMPLE_FMT_FLT for output samples. nellymoser: check output buffer size before decoding win32: improve threading algorithm warning Conflicts: libavcodec/nellymoserdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * mpc8: check output buffer size before decodingJustin Ruggles2011-10-02
| |
| * mpc7: return error if packet is too small.Justin Ruggles2011-10-02
| |
| * mpc7: check output buffer size before decodingJustin Ruggles2011-10-02
| |
| * nellymoserdec: allocate float_buf only when decoding to int16Justin Ruggles2011-10-02
| |
| * nellymoserdec: use NELLY_BUF_LEN instead of 128Justin Ruggles2011-10-02
| |
| * nellymoserdec: use NELLY_BLOCK_LEN instead of 64 when appropriate.Justin Ruggles2011-10-02
| |
| * nellymoserdec: allow user to request SAMPLE_FMT_FLT for output samples.Justin Ruggles2011-10-02
| |
| * nellymoser: check output buffer size before decodingJustin Ruggles2011-10-02
| |
| * win32: improve threading algorithm warningLuca Barbato2011-10-02
| | | | | | | | | | If no threading is requested do not issue warning about unsupported threading algorithm.
* | MAINTAINERS: new ffplay maintainerMichael Niedermayer2011-10-03
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'cus/stable'Michael Niedermayer2011-10-02
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * cus/stable: ffplay: use libswresample instead of av_audio_convert audioconvert: add av_get_default_channel_layout public function ffplay: use avctx->channels and avctx->freq before avcodec_open2 consistently ffplay: remove now unnecessary request_channels, we set it now with options ffplay: set request_channels to 2 Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * | ffplay: use libswresample instead of av_audio_convertMarton Balint2011-10-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously ffplay expected SDL_AudioOpen to provide the requested sample rate and channel number. This is no longer a requirement because this patch replaces the audio convert function with libswresample's swr_convert which is capable of handling different sample formats, sample rates and different number of channels and different channel layouts. The patch also removes the hardcoded 16bit samples assumption and uses av_get_bytes_per_sample almost everywhere. The only exceptions are the update_sample_display and video_audio_display functions, it seemed too much of a headache to make them generic. We also fix a tiny bug in sdl_audio_callback, we ensure that the number of bytes when we put silence in the buffer is a multiple of the frame size.
| * | audioconvert: add av_get_default_channel_layout public functionMarton Balint2011-10-02
| | |
| * | ffplay: use avctx->channels and avctx->freq before avcodec_open2 consistentlyMarton Balint2011-10-02
| | |
| * | ffplay: remove now unnecessary request_channels, we set it now with optionsMarton Balint2011-10-02
| | |
| * | ffplay: set request_channels to 2Michael Niedermayer2011-10-02
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | riff: map 0x0038 to amrnb, works on http://video.mopoto.com/4/40/407/40709.aviCompn2011-10-02
| | |
* | | h264: fix intra 16x16 mode check when using mbaff and constrained_intra_pred.Laurent Aimar2011-10-02
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | libvpxenc: cosmetics to make code more similar to lucas.Michael Niedermayer2011-10-02
|/ / | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: check for invalid bit depth value.Laurent Aimar2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: add entries for 11 and 12 bits in ff_h264_chroma_qp[][]Laurent Aimar2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: fix the check for invalid SPS:num_ref_frames.Laurent Aimar2011-10-02
| | | | | | | | | | | | | | | | | | | | | | This patch set the limit to 16. For information, thoses previous commits: 41f7e2d11d2dca23842ee89d530ca9fa15cec9d8 5cbb0e70a0a2ee99eb3cb09e837b9a1f7355b9bc assumed it was either 30 or 32. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: do not let invalid values in h->ref_count on ↵Laurent Aimar2011-10-02
| | | | | | | | | | | | ff_h264_decode_ref_pic_list_reordering() errors. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Reject video with non multiple of 16 width/height in the 4xm decoder.Laurent Aimar2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vf_lut.c: fix wrong syntax in exampleStefano Sabatini2011-10-02
| |
* | lavfi: remove usage of deprecated av_opt_set_defaults2() functionStefano Sabatini2011-10-02
| | | | | | | | Prefer av_opt_set_defaults() instead.
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-02
|\| | | | | | | | | | | | | | | | | | | | | | | * qatar/master: lavc: add video/audio/encoding flags to global_quality option libvpxenc: use libvpx's own defaults for some parameters vpxenc: add private options Conflicts: libavcodec/libvpxenc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavc: add video/audio/encoding flags to global_quality optionAnton Khirnov2011-10-01
| |
| * libvpxenc: use libvpx's own defaults for some parametersLuca Barbato2011-10-01
| | | | | | | | | | | | | | | | Specifically, qmin/qmax, gop_size and keyint_min. Fixes bug 47. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * vpxenc: add private optionsLuca Barbato2011-10-01
| | | | | | | | | | | | | | Make libvpx support close to the libx264 one. Thanks to Jan Gerber <j@v2v.cc> for the support. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | 4xm decoder: fix data size for i2 frames.Michael Niedermayer2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | 4xm decoder: print some error messages in case of errors.Michael Niedermayer2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Check for out of bound accesses in the 4xm decoder.Laurent Aimar2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Prevent block size from inreasing in the shorten decoder.Laurent Aimar2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Check for out of bound reads in PTX decoder.Laurent Aimar2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Fix the check for missing references in ff_er_frame_end() for H264.Laurent Aimar2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Clear FF_INPUT_BUFFER_PADDING_SIZE bytes at the end of the temporary buffers ↵Laurent Aimar2011-10-02
| | | | | | | | | | | | used in 4xm decoder. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Prevent NULL dereference when the huffman table is invalid in the 4xm decoder.Laurent Aimar2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Fix use of uninitialized memory in 4X Technologies demuxer.Laurent Aimar2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: increase ref_poc size to 32 as it can be per field.Michael Niedermayer2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: set unused ref_counts to 0 as a precautionary meassure.Michael Niedermayer2011-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ff_dot_product(): change return value to int64_tMichael Niedermayer2011-10-01
| | | | | | | | | | Idea-by: Vitor Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g729dec: initialize bit reader with the correct buffer sizeVitor Sessak2011-10-01
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | g723.1_data: remove unneeded LMichael Niedermayer2011-10-01
| | | | | | | | | | Found-by: Vitor Signed-off-by: Michael Niedermayer <michaelni@gmx.at>