Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-12lavc: do not use av_pix_fmt_descriptors directlyPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-10-12Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: lavu,lavd: do not use av_pix_fmt_descriptors directly. Conflicts: libavutil/imgutils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12Merge commit '59ee9f78b0cc4fb84ae606fa317d8102ad32a627'Michael Niedermayer
* commit '59ee9f78b0cc4fb84ae606fa317d8102ad32a627': lavfi: do not use av_pix_fmt_descriptors directly. Conflicts: libavfilter/buffersrc.c libavfilter/drawutils.c libavfilter/filtfmts.c libavfilter/vf_ass.c libavfilter/vf_boxblur.c libavfilter/vf_drawtext.c libavfilter/vf_lut.c libavfilter/vf_pad.c libavfilter/vf_scale.c libavfilter/vf_showinfo.c libavfilter/vf_transpose.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12Merge commit '50ba57e0ce63d9904269ea0728936a0c79f8bfb5'Michael Niedermayer
* commit '50ba57e0ce63d9904269ea0728936a0c79f8bfb5': lavc: do not use av_pix_fmt_descriptors directly. Conflicts: libavcodec/imgconvert.c libavcodec/libopenjpegdec.c libavcodec/libopenjpegenc.c libavcodec/mpegvideo.c libavcodec/rawdec.c libavcodec/rawenc.c libavcodec/tiffenc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12yop: check return value of avformat_new_stream()Paul B Mahol
Fixes null pointer dereference, fixes CID703729. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-10-12Merge commit '9953ff3cd844eb5f6d8dfce98cad94b78a0fc7dc'Michael Niedermayer
* commit '9953ff3cd844eb5f6d8dfce98cad94b78a0fc7dc': mpegvideo: fix indentation sws: do not use av_pix_fmt_descriptors directly. Conflicts: libavcodec/mpegvideo.c libswscale/swscale_internal.h libswscale/swscale_unscaled.c libswscale/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12Merge commit 'b7f1010c8fce09096057528f7cd29589ea1ae7df'Michael Niedermayer
* commit 'b7f1010c8fce09096057528f7cd29589ea1ae7df': tools: do not use av_pix_fmt_descriptors directly. pixdesc: add functions for accessing pixel format descriptors. build: add support for Tru64 (OSF/1) md5: Allocate a normal private context for the opaque md5 context pointer Conflicts: cmdutils.c doc/APIchanges ffprobe.c libavformat/md5enc.c libavutil/version.h tools/graph2dot.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12Merge commit 'e002e3291e6dc7953f843abf56fc14f08f238b21'Michael Niedermayer
* commit 'e002e3291e6dc7953f843abf56fc14f08f238b21': Use the new aes/md5/sha/tree allocation functions avutil: Add functions for allocating opaque contexts for algorithms svq3: fix pointer type warning svq3: replace unsafe pointer casting with intreadwrite macros parseutils-test: various cleanups Conflicts: doc/APIchanges libavcodec/svq3.c libavutil/parseutils.c libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12Merge commit '15ba7f6525c0f56f0c8e3e3e0c0c5129de054f41'Michael Niedermayer
* commit '15ba7f6525c0f56f0c8e3e3e0c0c5129de054f41': parseutils: fix const removal warning prepare 9_beta1 release Conflicts: Changelog RELEASE libavutil/parseutils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12Merge commit '9734b8ba56d05e970c353dfd5baafa43fdb08024'Michael Niedermayer
* commit '9734b8ba56d05e970c353dfd5baafa43fdb08024': Move avutil tables only used in libavcodec to libavcodec. Conflicts: libavcodec/mathtables.c libavutil/intmath.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12Merge commit '0a75d1da23b8659ec49391469bb592da12760077'Michael Niedermayer
* commit '0a75d1da23b8659ec49391469bb592da12760077': options_table: refs option is not snow-only random_seed: Support using CryptGenRandom on windows doc: update the faq entry about custom I/O Conflicts: doc/faq.texi libavcodec/options_table.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12truemotion2: remove unreachable codePaul B Mahol
Fixes CID610345. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-10-12lavu,lavd: do not use av_pix_fmt_descriptors directly.Anton Khirnov
2012-10-12lavfi: do not use av_pix_fmt_descriptors directly.Anton Khirnov
2012-10-12lavc: do not use av_pix_fmt_descriptors directly.Anton Khirnov
2012-10-12mpegvideo: fix indentationAnton Khirnov
2012-10-12tools: do not use av_pix_fmt_descriptors directly.Anton Khirnov
2012-10-12sws: do not use av_pix_fmt_descriptors directly.Anton Khirnov
2012-10-12pixdesc: add functions for accessing pixel format descriptors.Anton Khirnov
Make av_pix_fmt_descriptors table static on next major bump. Making the table public is dangerous, since the caller has no way to know how large it actually is. It also prevents adding new fields to AVPixFmtDescriptor without a major bump.
2012-10-12takdec: stop decoding in case of unknown bpsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-10-12takdec: s/bits_per_coded_sample/bits_per_raw_samplePaul B Mahol
bits_per_coded_sample should be set from demuxer and not from decoder. Prior to this change value set from demuxer would get overwritten in decoder. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-10-12nellymoserenc: fix array element orderingMichael Niedermayer
Fixes assertion failures in trellis encoder Fixes valgrind warnings in trellis encoder Fixes CID732257 Fixes CID732256 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12build: add support for Tru64 (OSF/1)Mans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-12tscc2: fix out of array accessMichael Niedermayer
Fixes CID732260 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12rtmpproto: fix out of array writeMichael Niedermayer
Fixes CID732263 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12motion-test: zero dsp contextMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12dv: zero dsp before init, this fixes use of uninitialized dct_bitsMichael Niedermayer
Fixes CID732292 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12lavc: Fix use of uninitialized field.Michael Niedermayer
Fixes CID732297 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12rtspdec:read_line: fix use of uninitialized byteMichael Niedermayer
Fixes CID732301 Fixes CID723300 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12sanm: fix off by 1 error in draw_glyph()Michael Niedermayer
This fix changes nothing as nothing passed a so large value Fixes CID733785 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12update_initial_timestamps: increase pts_buffer sizeMichael Niedermayer
Fixes CID733786 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-12md5: Allocate a normal private context for the opaque md5 context pointerMartin Storsjö
This avoids having to overestimate the md5 context size, which isn't known beforehand, allowing us to use the new allocate functions instead. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-12Use the new aes/md5/sha/tree allocation functionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-12avutil: Add functions for allocating opaque contexts for algorithmsMartin Storsjö
The current API where the plain size is exposed is not of much use - in most cases it is allocated dynamically anyway. If allocated e.g. on the stack via an uint8_t array, there's no guarantee that the struct's members are aligned properly (unless the array is overallocated and the opaque pointer within it manually aligned to some unspecified alignment). Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-11bethsoftvid: check return value of av_packet_new_side_data()Paul B Mahol
Fixes null pointer dereference, fixes CID733777. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-10-11svq3: fix pointer type warningMans Rullgard
Fixes: libavcodec/svq3.c:661:9: warning: passing argument 2 of 'svq3_decode_block' from incompatible pointer type libavcodec/svq3.c:208:19: note: expected 'DCTELEM *' but argument is of type 'DCTELEM (*)[32]' Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-11svq3: replace unsafe pointer casting with intreadwrite macrosMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-11bmp: unbreak non BMP_RGB compression for v4 and v5Paul B Mahol
Fixes CID733728 & CID733729. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-10-11parseutils: fix const removal warningMans Rullgard
The const qualifier is still removed although it happens inside the strtol() function so no warning is generated. Fixes: libavutil/parseutils.c:110:11: warning: assignment discards qualifiers from pointer target type Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-11parseutils-test: various cleanupsMans Rullgard
- make tables static const - remove useless use of compound literal - break long lines - fix a comma/semicolon typo Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-10-11lavfi/ebur128: fix typo in condition.Clément Bœsch
Fixes CID733727.
2012-10-11prepare 9_beta1 releaseJanne Grunau
2012-10-11Move avutil tables only used in libavcodec to libavcodec.Diego Biurrun
2012-10-11random_seed: fix digest sizeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-11random_seed: fix out of array readMichael Niedermayer
Fixes CID733787 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-11options_table: refs option is not snow-onlyDiego Biurrun
2012-10-11yuv2rgb: fix declared array sizes, so they match actuals.Michael Niedermayer
Fixes CID733789, and others Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-11random_seed: Support using CryptGenRandom on windowsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-10-11jpeglsenc: favor av_freep() for saftey over av_free() when a variable is ↵Michael Niedermayer
still accessible afterwards Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-11jpeglsnec: fix memleak of state in error caseMichael Niedermayer
Fixes CID733794 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>