summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge commit '97bf7c03b1338a867da52c159a2afecbdedcfa88'Michael Niedermayer2012-11-12
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '97bf7c03b1338a867da52c159a2afecbdedcfa88': doc: git-howto: Leave reviewers time to react before pushing patches Include libavutil/channel_layout.h instead of libavutil/audioconvert.h lavu: rename audioconvert.* to channel_layout.* and deprecate audioconvert.h Conflicts: doc/APIchanges doc/examples/decoding_encoding.c doc/git-howto.texi ffmpeg_filter.c libavcodec/flacdec.c libavcodec/imc.c libavcodec/mpegaudiodec.c libavcodec/utils.c libavfilter/asrc_anullsrc.c libavfilter/audio.c libavfilter/avfilter.c libavfilter/avfilter.h libavfilter/avfiltergraph.c libavfilter/buffer.c libavutil/Makefile libavutil/audioconvert.h libavutil/channel_layout.c libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * doc: git-howto: Leave reviewers time to react before pushing patchesDiego Biurrun2012-11-11
| |
| * Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles2012-11-11
| | | | | | | | Also reorder some other #include when applicable.
| * lavu: rename audioconvert.* to channel_layout.* and deprecate audioconvert.hJustin Ruggles2012-11-11
| |
* | Merge commit '802713c4e7b41bc2deed754d78649945c3442063'Michael Niedermayer2012-11-12
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '802713c4e7b41bc2deed754d78649945c3442063': mss2: prevent potential uninitialized reads mss2: reindent after last commit mss2: fix handling of unmasked implicit WMV9 rectangles configure: add lavu dependency to lavr/lavfi .pc files x86inc: Set program_name outside of x86inc.asm Conflicts: configure Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * mss2: prevent potential uninitialized readsAlberto Delmás2012-11-11
| | | | | | | | | | | | | | | | The alternative to zeroing on init is setting the corrupted flag in all cases where pal_pic is not fully written, at the cost of added complexity. Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
| * mss2: reindent after last commitKostya Shishkov2012-11-11
| |
| * mss2: fix handling of unmasked implicit WMV9 rectanglesAlberto Delmás2012-11-11
| | | | | | | | Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
| * configure: add lavu dependency to lavr/lavfi .pc filesAnton Khirnov2012-11-11
| |
| * x86inc: Set program_name outside of x86inc.asmDiego Biurrun2012-11-11
| | | | | | | | This reduces the local difference to the x264 upstream version.
* | vc1dec: prevent null ptr dereferences.Michael Niedermayer2012-11-12
| | | | | | | | | | | | | | | | | | The added checks are in line with existing checks but should probably be replaced by more advanced error concealment at some point. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1dec: factorize srcU/V offseting outMichael Niedermayer2012-11-12
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | vc1: check image height, fix division by 0Michael Niedermayer2012-11-12
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | mpeg12: clean current picture ptr.Michael Niedermayer2012-11-12
| | | | | | | | | | | | | | | | This avoids having a stray pointer left that may not represent the current picture and state. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi: remove mp=geq filter.Clément Bœsch2012-11-11
| | | | | | | | Native geq video filter is now available.
* | lavfi: add geq filter.Clément Bœsch2012-11-11
| |
* | lavf/assenc: add non strict ts flag.Clément Bœsch2012-11-11
| | | | | | | | ASS can have several events at the same time.
* | lavfi: remove mp=fixpts filter.Clément Bœsch2012-11-11
| | | | | | | | | | lavfi/f_setpts.c should allow everything mp=fixpts supports, with a lot of additional control.
* | lavfi: remove mp=tile filter.Clément Bœsch2012-11-11
| | | | | | | | The native tile video filter is now feature equivalent.
* | fate/lavfi: increase vf tile coverage.Clément Bœsch2012-11-11
| |
* | doc/filters: complete tile documentation.Clément Bœsch2012-11-11
| |
* | lavfi/tile: extend shorthand parameters.Clément Bœsch2012-11-11
| | | | | | | | This makes the syntax similar to mp=tile.
* | lavfi/tile: add nb_frames option.Clément Bœsch2012-11-11
| |
* | lavfi/tile: add margin and padding options.Clément Bœsch2012-11-11
| |
* | lavfi/tile: allow named arguments.Clément Bœsch2012-11-11
| |
* | gxf: avoid null ptr deref without streams.Michael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | proresdec: check input size before reading qmats, prevent overreading.Michael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dsicinav: update bitmap_frame_size, avoid out of array reads.Michael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | snow: fix edge emu switchMichael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | msmpeg4dec: check w/h, prevent assert failure laterMichael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | segafilm: fix division by 0Michael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | omadec: fix len check in nprobe() prevent out of array accessMichael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | zmbvdec: check decompression buffer size.Michael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | diracdec: check wavelet depth, prevent out of array read.Michael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libvorbisdec: dont try to update an empty queMichael Niedermayer2012-11-11
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | diracdec: Use only one frame per referenceMichael Niedermayer2012-11-11
| | | | | | | | | | | | | | Prevents null ptr dereference Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/Makefile: generate library headers with the correct section numberStefano Sabatini2012-11-11
| |
* | electronic arts: support rare samples containing adpcm_ea_r1 audioPeter Ross2012-11-11
| | | | | | | | | | | | | | Fixes ticket #1549. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | electronicarts: use av_log_ask_for_samplePeter Ross2012-11-11
| | | | | | | | | | Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: 2nd try at getting sm2v workingMichael Niedermayer2012-11-11
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | dwt_yasm/vertical_compose: fix width witdth argument.Michael Niedermayer2012-11-11
| | | | | | | | | | | | | | Fixes out of array accesses Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-11-11
|\| | | | | | | | | | | | | * qatar/master: x86: h264_qpel_10bit: drop unused parameter from MC10/MC20/MC30 macros Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * x86: h264_qpel_10bit: drop unused parameter from MC10/MC20/MC30 macrosDiego Biurrun2012-11-10
| |
* | doc: add libavfilter.texiStefano Sabatini2012-11-11
| | | | | | | | With some re-wording by Alexander Strasser <eclipse7@gmx.net>.
* | doc: add libavutil.texiStefano Sabatini2012-11-11
| | | | | | | | | | With some fixes and better wording by Alexander Strasser <eclipse7@gmx.net>.
* | smackaud: return meaningful error codesPaul B Mahol2012-11-11
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | targa: return more meaningful error codesPaul B Mahol2012-11-11
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | diracdec: allocate enough space for blocksMichael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | diracdec: fix edge emulation check, fixes out of array readsMichael Niedermayer2012-11-11
| | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | h264: Support SMV2Michael Niedermayer2012-11-11
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>