summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* libavfilter: example audio filtering programAnton Khirnov2014-02-25
| | | | | | Based on a patch by Andrew Kelley <superjoe30@gmail.com> Signed-off-by: Diego Biurrun <diego@biurrun.de>
* parser: K&R formatting cosmeticsLuca Barbato2014-02-25
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* parser: Remove commented-out cruftDiego Biurrun2014-02-25
|
* texi2pod: always declare the pod file as UTF-8 encodedJanne Grunau2014-02-24
|
* doc: fix one accented wordVittorio Giovara2014-02-24
|
* doc: name correct headerVittorio Giovara2014-02-24
|
* af_volume: preserve frame propertiesAnton Khirnov2014-02-24
|
* af_resample: preserve frame propertiesAnton Khirnov2014-02-24
|
* avconv: remove a write-only variableAnton Khirnov2014-02-24
|
* libx265: Properly handled dynamic linking with MSVCDerek Buitenhuis2014-02-24
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* libx265: Support SARDerek Buitenhuis2014-02-24
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* libx265: Support 4:4:4Derek Buitenhuis2014-02-24
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* libx265: Update API usageDerek Buitenhuis2014-02-24
| | | | | | | Framerate is now a sane rational instead of an integer, and inputDepth is changed to what it actually is. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* Use av_frame_copy() to simplify code where appropriate.Anton Khirnov2014-02-24
|
* lavc: use AVFrame API properly in ff_reget_buffer()Anton Khirnov2014-02-24
|
* frame: add a convenience function for copying AVFrame dataAnton Khirnov2014-02-24
|
* avconv: support forcing codec tags for input streamsAnton Khirnov2014-02-24
|
* x86: add detection for Bit Manipulation Instruction setsJames Almer2014-02-23
| | | | | | Based on x264 code Signed-off-by: James Almer <jamrial@gmail.com>
* x86: add detection for FMA3 instruction setJames Almer2014-02-23
| | | | | | Based on x264 code Signed-off-by: James Almer <jamrial@gmail.com>
* x86: add missing XOP checks and macrosJames Almer2014-02-23
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* configure: disable cpunop if the check failsJanne Grunau2014-02-23
| | | | | | | | Moving cpunop from the HAVE_LIST to the ARCH_EXT_LIST_X86 has the side effect of enabling it. The semantics of the check have to be changed from enable if successful to disable if unsuccessful. This was missing in 2b0bb69997c2416e74f41aa1400ce983bf8775c0 causing build errors with nasm.
* hevc: Do not left shift a negative value in hevc_loop_filter_chromaLuca Barbato2014-02-23
|
* hevc: Do not right shift a negative value in get_pcmLuca Barbato2014-02-23
|
* hevc: Drop unnecessary shifts in deblocking_filter_CTBLuca Barbato2014-02-23
| | | | beta_offset is pre-multiplied by 2.
* lavr: return an error if a avresample_open() is called on an open contextAnton Khirnov2014-02-22
|
* lavr: add a function for checking whether AVAudioResampleContext is openAnton Khirnov2014-02-22
|
* h264: Fix a typo from the previous commitLuca Barbato2014-02-22
| | | | | | f777504f640260337974848c7d5d7a3f064bbb45 changed a - in + CC: libav-stable@libav.org
* mxf: Add DNxHD ULTomas Härdin2014-02-21
| | | | | | | Note that the old DNxHD UL is actually JPEG 2000 according to RP224. Leaving it as-is for now. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* mxf: Add uncompressed 422 8-bit rawvideo ULPhilip de Nier2014-02-21
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* libvorbis: Give consistent names to all functions, structs, and definesDiego Biurrun2014-02-21
|
* h264: Lower bound check for slice offsetsVittorio Giovara2014-02-20
| | | | | | | | | | And use the value from the specification. Sample-Id: 00000451-google Found-by: Mateusz j00ru Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* avconv: Do not divide by zeroLuca Barbato2014-02-20
|
* configure: Add usan to the toolchain presetsLuca Barbato2014-02-20
| | | | clang-3.4 and gcc-4.9 have it.
* configure: Move cpunop into ARCH_EXT_LIST_X86Diego Biurrun2014-02-20
| | | | It is a processor feature, so it belongs there.
* configure: Move inet_aton check into network function check blockDiego Biurrun2014-02-20
|
* aarch64: use EXTERN_ASM consistently for exported symbolsJanne Grunau2014-02-20
| | | | Based on e3fec3f095ab5ea08ee662942d98526aaf5e3635 for arm.
* x86: float dsp: unroll SSE versionsChristophe Gisquet2014-02-20
| | | | | | | | | | vector_fmul and vector_fmac_scalar are guaranteed that they can process in batch of 16 elements, but their SSE versions only does 8 at a time. Therefore, unroll them a bit. 299 to 261c for 256 elements in vector_fmac_scalar on Arrandale/Win64. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* dca: replace some memcpy by AV_COPY128Christophe Gisquet2014-02-20
| | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* h264: avoid undefined behavior in chroma motion compensationJanne Grunau2014-02-20
| | | | | | Makes fate-h264 pass under valgrind --undef-value-errors=yes with -cpuflags none. {avg,put}_h264_chroma_mc8_8 approximately 5% faster, {avg,put}_h264_chroma_mc4_8 2% faster both on x86 and arm.
* mpeg4video_parser: Drop pointless av_-prefix from static functionDiego Biurrun2014-02-20
|
* avcodec: Consistently name encoder init functions foo_encode_initDiego Biurrun2014-02-20
|
* x86: dsputil: Use correct file name as multiple inclusion guardDiego Biurrun2014-02-20
|
* bit_depth_template: Use file name as multiple inclusion guardDiego Biurrun2014-02-20
|
* svq3: Adjust #endif commentDiego Biurrun2014-02-20
|
* build: The MPEG-4 video parser depends on h263dspDiego Biurrun2014-02-20
| | | | | The dependency is indirect through the h263/mpegvideo code. CC: libav-stable@libav.org
* libavformat/mpegts: expose raw packet sizeLeandro Dorileo2014-02-19
| | | | | | | | We cannot easily determine if an mpeg TS's packet size is DVHS, FEC or so on, for that we need to expose the internal raw_packet_size field. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* AVOptions: add flags for read/read-only optionsAnton Khirnov2014-02-19
|
* AVOptions: deprecate unused AV_OPT_FLAG_METADATAAnton Khirnov2014-02-19
| | | | | It was never used since it was added and the things it was intended for are now exported differently.
* hevc: Always consider VLC NALU type mismatch fatalLuca Barbato2014-02-19
| | | | | | Sample-Id: 00001667-google Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
* hevc: Mention the missing SPS in the error messageLuca Barbato2014-02-19
|