summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add missing headers to make template files compile (more) standaloneDiego Biurrun2014-03-26
|
* dsputil_template: Move bits that are used templatized into separate fileDiego Biurrun2014-03-26
| | | | This allows detemplatizing the bits that are not instantiated twice.
* dsputil: Move hpel_template #include out of dsputil_templateDiego Biurrun2014-03-26
| | | | Multiple inclusion makes no sense as it is only used in the 8-bit case.
* x86: h264_qpel: Fix typo in CALL_2X_PIXELS macro invocationDiego Biurrun2014-03-26
| | | | This fixes FATE with mmxext CPUFLAGS set.
* avcodec: add missing includesVittorio Giovara2014-03-25
|
* avconv: More descriptive message about framedropVittorio Giovara2014-03-25
|
* vf_transpose: K&R formatting cosmeticsVittorio Giovara2014-03-25
|
* libx265: Only use one memcpy for headersDerek Buitenhuis2014-03-24
| | | | | | They're guaranteed by the x265 API to be contiguous in memory. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* libx265: Write global extradata when requestedMichael Niedermayer2014-03-24
| | | | | | | | Matroska, MP4, and other containers require it. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* build: Add config option for CABAC codeDiego Biurrun2014-03-24
| | | | This allows for more elegant dependency and object declarations.
* avconv: don't warn on multiple frames per packet for codecs that expect itAnton Khirnov2014-03-24
|
* avconv: print verbose per-stream transcoding statisticsAnton Khirnov2014-03-24
|
* avconv: split printing the final statistics into a separate functionAnton Khirnov2014-03-24
|
* avconv: rewrite output data size trackingAnton Khirnov2014-03-24
| | | | | | Store a variable per OutputStream instead of globals for audio/video/extradata. This makes the code simpler and cleaner and fixes 2pass with multiple output streams.
* avconv: explicitly report when the muxing overhead is unknownAnton Khirnov2014-03-24
|
* avconv: remove unused nb_frames_dupAnton Khirnov2014-03-24
| | | | Frame duplication now happens in vf_fps.
* {v,a}f_showinfo: print frame side dataAnton Khirnov2014-03-24
|
* mp3dec: export replaygain tags from ID3v2Anton Khirnov2014-03-24
|
* af_volume: support using replaygain frame side dataAnton Khirnov2014-03-24
|
* frame: add a function for removing side data from a frameAnton Khirnov2014-03-24
|
* avconv: add stream-global side data to the first demuxed packetAnton Khirnov2014-03-24
|
* libavcodec: when decoding, copy replaygain side data to decoded framesAnton Khirnov2014-03-24
|
* Add replaygain side data type and code for parsing replaygain tags.Anton Khirnov2014-03-24
|
* lavf: add an AVStream field for exporting stream-global side dataAnton Khirnov2014-03-24
|
* lavc: give a typedeffed name to the AVPacket.side_data structAnton Khirnov2014-03-24
|
* configure: Remove dcbzl check for e500v1 and e500v2 architecturesPeter Krefting2014-03-24
| | | | | | | | | | | | The DCBZL instruction is not available for the e500v1 and e500v2 architectures, but may still be recognized by the toolchain, so we need to explicitly disable it for these architectures. References: PowerPC™ e500 Core Family Reference Manual (Freescale) Found-by: Ståle Kristoffersen <staalebk@ifi.uio.no> Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* mpeg: K&R formatting cosmeticsTanja Batchelor2014-03-24
| | | | Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* h264: Split h264 slice decoding from nal decodingLuca Barbato2014-03-23
|
* h264: move macroblock decoding into its own fileVittorio Giovara2014-03-23
|
* build: Sort h264 objectsLuca Barbato2014-03-23
|
* build: h264 parser depends on full h264 decoderLuca Barbato2014-03-23
|
* RELEASE_NOTES: mention new filtersVittorio Giovara2014-03-23
|
* lavc: drop ff_pixfmt_list_420Vittorio Giovara2014-03-23
|
* changelog: switch libx265 and compand entriesVittorio Giovara2014-03-23
|
* configure: Always use -DOPJ_STATIC when checking for openjpegLuca Barbato2014-03-23
| | | | | | Unbreaks windows systems not providing pkgconf files. Reported-By: Rafaël Carré <funman@videolan.org>
* movenc: Allow override of major brand in ftyp atomJohn Stebbins2014-03-23
| | | | Signed-off-by: Tim Walker <tdskywalker@gmail.com>
* lagarith: Fix typo in printf format stringDiego Biurrun2014-03-22
| | | | libavcodec/lagarith.c:671:16: warning: '#' flag used with ‘%u’ gnu_printf format [-Wformat]
* dsputil: Move thirdpel-related bits into their own contextDiego Biurrun2014-03-22
|
* x86: dsputil: Move hpeldsp-related declarations to a separate headerDiego Biurrun2014-03-22
|
* ppc: dsputil: Move hpeldsp-related declarations to a separate headerDiego Biurrun2014-03-22
|
* x86: dsputil: Move fpel declarations to a separate headerDiego Biurrun2014-03-22
|
* dsputil: Refactor duplicated CALL_2X_PIXELS / PIXELS16 macrosDiego Biurrun2014-03-22
|
* dsputil: Move ff_zigzag_direct and ff_crop_tab declarations to mathops.hDiego Biurrun2014-03-22
|
* imgconvert: Move ff_deinterlace_line_*_mmx declarations out of dsputilDiego Biurrun2014-03-22
|
* x86: dsputil: Move inline assembly macros to a separate headerDiego Biurrun2014-03-22
|
* nuv: Reuse the DSPContext from RTJpegContextDiego Biurrun2014-03-22
| | | | | | | There is no point in populating NuvContext with another DSPContext. Also split static and dynamic initialization bits to avoid running the static initialization parts over and over.
* float_dsp: Replace arch optimization ifdefs by if cascadeDiego Biurrun2014-03-22
| | | | Arch-specific optimizations are handled this way everywhere else.
* avcodec: more correct printf specifiersDiego Biurrun2014-03-22
|
* avfilter: more correct printf format specifiersDiego Biurrun2014-03-22
|
* vaapi: switch ff_vaapi_get_surface_id from Picture to AVFramewm42014-03-20
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>