summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* lavf: Add functions for SRTP decryption/encryptionMartin Storsjö2013-01-15
| | | | | | | | | | This supports the AES_CM_128_HMAC_SHA1_80 and AES_CM_128_HMAC_SHA1_32 cipher suites (from RFC 4568) at the moment. The main missing features are replay protection (which can be added later without changing the internal API), and the F8 and null ciphers. Signed-off-by: Martin Storsjö <martin@martin.st>
* lavu: Add an API for calculating HMAC (RFC 2104)Martin Storsjö2013-01-15
| | | | | | | This supports HMAC-MD5 and HMAC-SHA1 for now, other hashes are simple to add. Signed-off-by: Martin Storsjö <martin@martin.st>
* libx264: use the library specific default rc_initial_buffer_occupancyLuca Barbato2013-01-15
| | | | | | | | By default libav sets it to 3/4 while x264 sets it to 9/10. CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* lavc: set the default rc_initial_buffer_occupancyLuca Barbato2013-01-15
| | | | | | | | | | | rc_buffer_size is not set before. Solve the initial the rate control underflow issue reported in bug 222. CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* nutdec: Always return a value from nut_read_timestamp()Diego Biurrun2013-01-15
| | | | | | | | | The function is a callback that is called by ff_gen_search with a constant stream index. Avoid a false positive on older gcc version. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* configure: Make warnings from -Wreturn-type fatal errorsDiego Biurrun2013-01-14
| | | | These warnings have no false positives and point to serious bugs.
* x86: ABS2: port to cpuflagsDiego Biurrun2013-01-14
|
* vdpau: Remove av_unused attribute from function declarationRémi Denis-Courmont2013-01-14
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* h264: fix ff_generate_sliding_window_mmcos() prototype.Anton Khirnov2013-01-14
| | | | | | | It's been returning an error value since bad446e251405dc250c3cbee199072e083a1e4b9 Also check for the errors it returns.
* suncc: Replace more GCC flags by their equivalents in suncc_flags()Sean McGovern2013-01-14
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* libtheoraenc: fix granularity of video qualityMaximilian Seesslen2013-01-14
| | | | | | | | The floating point version of av_clip has to be used when converting the quality level. Signed-off-by: Maximilian Seesslen <mes@seesslen.net> Signed-off-by: Martin Storsjö <martin@martin.st>
* oggparsetheora: fix comment header parsingGiorgio Vazzana2013-01-14
| | | | | | Pass the correct header size to ff_vorbis_comment() Signed-off-by: Martin Storsjö <martin@martin.st>
* h264: don't clobber mmco opcode tables for non-first slice headers.Ronald S. Bultje2013-01-14
| | | | | | | | | | | | | | | | | | | | | Clobbering these tables will temporarily clobber the template used as a basis for other threads to start decoding from. If the other decoding thread updates from the template right at that moment, subsequent threads will get invalid (or, usually, none at all) mmco tables. This leads to invalid reference lists and subsequent decode failures. Therefore, instead, decode the mmco tables only for the first slice in a field or frame. For other slices, decode the bits and ensure they are identical to the mmco tables in the first slice, but don't ever clobber the context state. This prevents other threads from using a clobbered/invalid template as starting point for decoding, and thus fixes decoding in these cases. This fixes occasional (~1%) failures of h264-conformance-mr1_bt_a with frame-multithreading enabled. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* libvpx: make vp8 and vp9 selectableLuca Barbato2013-01-14
| | | | Support older libvpx versions.
* libvpx: support vp9Luca Barbato2013-01-14
| | | | This feature is experimental use at your risk
* nut: support vp9 tagLuca Barbato2013-01-14
|
* mkv: support vp9 tagTom Finegan2013-01-14
|
* rtpdec: Make variables that should wrap unsignedMartin Storsjö2013-01-14
| | | | | | | This makes the behaviour defined when they wrap around. The value assigned to expected_prior was a uint32_t already. Signed-off-by: Martin Storsjö <martin@martin.st>
* build: Remove stray Makefile entry for non-existent VCR1 encoderDiego Biurrun2013-01-14
|
* rtpdec: Handle more received packets than expected when sending RRMartin Storsjö2013-01-14
| | | | | | | | | | Without this, we'd signal a huge loss rate (due to unsigned wraparound) if we had received one packet more than expected (that is, one seq number sent twice). The code has a check for lost_interval <= 0, but that doesn't do what was intended as long as the variable is unsigned. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: Simplify insertion into the linked list queueMartin Storsjö2013-01-14
| | | | | | | By using a pointer-to-pointer, we avoid having to keep track of the previous packet separately. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: Remove a woefully misplaced commentMartin Storsjö2013-01-14
| | | | | | | | The code below the comment does not at all relate to statistics, and even if moved to the right place, the comment adds little value. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtmpproto: Fix assignments in if()Michael Niedermayer2013-01-14
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* lavf: Fix assignments in if()Michael Niedermayer2013-01-14
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* svq1enc: Fix assignments in if()Michael Niedermayer2013-01-14
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* lavc: Fix assignments in if() when calling ff_af_queue_addMichael Niedermayer2013-01-14
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* h264: Fix assignments in if()Michael Niedermayer2013-01-14
| | | | | | | | Fixes null pointer dereference later, since if this function failed, a positive return value was returned to the caller. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Martin Storsjö <martin@martin.st>
* truemotion2: cosmetics, reformatAnton Khirnov2013-01-14
|
* truemotion2: return meaningful error codes.Anton Khirnov2013-01-14
|
* tscc: remove some pointless comments and empty lines.Anton Khirnov2013-01-14
|
* tscc: return meaningful error codes.Anton Khirnov2013-01-14
|
* loco: cosmetics, reformatAnton Khirnov2013-01-14
|
* loco: return meaningful error codes.Anton Khirnov2013-01-14
|
* flicvideo: return meaningful error codes.Anton Khirnov2013-01-14
|
* vcr1: remove disabled encoder stubAnton Khirnov2013-01-14
|
* vcr1: return a meaningful error code.Anton Khirnov2013-01-14
|
* rpza: return a meaningful error code.Anton Khirnov2013-01-14
|
* qdrw: cosmetics, reformatAnton Khirnov2013-01-14
|
* qdrw: return meaningful error codes.Anton Khirnov2013-01-14
|
* qtrle: return a meaningful error code.Anton Khirnov2013-01-14
|
* gifdec: return meaningful error codes.Anton Khirnov2013-01-14
|
* interplayvideo: remove a static variable.Anton Khirnov2013-01-14
|
* interplayvideo: return meaningful error codes.Anton Khirnov2013-01-14
|
* lcldec: return meaningful error codes.Anton Khirnov2013-01-14
|
* targa: return meaningful error codes.Anton Khirnov2013-01-14
|
* qpeg: return a meaningful error code.Anton Khirnov2013-01-14
|
* nuv: return meaningful error codes.Anton Khirnov2013-01-14
|
* pcx: return meaningful error codes.Anton Khirnov2013-01-14
|
* tmv: return meaningful error codes.Anton Khirnov2013-01-14
|
* msrle: return meaningful error codes.Anton Khirnov2013-01-14
|