summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* doc: Fix syntax and logical errors in avconv stream combination exampleDiego Biurrun2014-09-10
| | | | | Bug-Id: 661 CC: libav-stable@libav.org
* dv: K&R formatting cosmeticsGabriel Dume2014-09-09
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* x86inc: Make INIT_CPUFLAGS support an arbitrary number of cpuflagsHenrik Gramner2014-09-09
| | | | | | Previously there was a limit of two cpuflags. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* x86inc: Free up variable name "n" in global namespaceLoren Merritt2014-09-09
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* x86inc: Make ym# behave the same way as xm#Henrik Gramner2014-09-09
| | | | | | This makes more sense for future implementations of templates with zmm registers. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* dirac: K&R formatting cosmeticsGabriel Dume2014-09-09
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* time: Add missing zeroGabriel Dume2014-09-08
| | | | | | Leftover of 56d7df91e010a177a80cfc8dbe394305 Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* Split off floating point AAN (I)DCT into separate componentsDiego Biurrun2014-09-07
|
* ismindex: Avoid writing ismf files if no base name has been specifiedMartin Storsjö2014-09-07
| | | | | | | | Previously, this could create files named "(null).ismf", if the -ismf parameter is specified (before an input file name), but without specifying any base name. Signed-off-by: Martin Storsjö <martin@martin.st>
* libavformat: Check mkdir return error codesMartin Storsjö2014-09-07
| | | | | | | | | | | | | Previously, the returned error codes were intentionally ignored (see fadd3a68213), to avoid aborting if the directory already existed. If the mkdir actually failed, this was caught when opening files within the directory fails anyway. By handling the error code here (but explicitly ignoring EEXIST), the error messages and return codes in these cases are more appropriate and less confusing. Signed-off-by: Martin Storsjö <martin@martin.st>
* avplay: Exit by default at the end of playbackDiego Biurrun2014-09-06
| | | | | | This is the expected behavior shared by all other cli multimedia players. Bug-Id: 732
* Drop unnecessary av_unused attributes.Diego Biurrun2014-09-05
|
* Replace av_unused attributes by block structuresDiego Biurrun2014-09-05
| | | | | This is more portable and avoids warnings with compilers that do not properly support av_unused.
* rdft: Move some variables into a separate blockDiego Biurrun2014-09-05
| | | | This avoids an unused variable warning with hardcoded tables.
* get_bits: Add OPEN_READER macro variant w/o size_plus8Diego Biurrun2014-09-05
| | | | This avoids a trillion warnings from MSVC.
* ismindex: produce .ismf fileMika Raento2014-09-05
| | | | | | | | This is a non-standard file that maps the MSS segment names to offsets in the ISMV file. This can be used to build a custom MSS streaming server without splitting the ISMV into separate files. Signed-off-by: Martin Storsjö <martin@martin.st>
* changelog: Move Ogg subtypes aliases entry to the correct releaseDiego Biurrun2014-09-04
|
* Mark 11 release in the changelogDiego Biurrun2014-09-04
| | | | Also fix some typos in the entries for the 11 release.
* Add release notes for 11.Anton Khirnov2014-09-04
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* vc1: Split bits used in libavformat into a separate headerDiego Biurrun2014-09-04
| | | | This reduces inter-library dependencies.
* build: Split WMA frequencies into a separate object fileDiego Biurrun2014-09-04
| | | | | These are the only WMA bits shared with binkaudio. Splitting them off reduces the binnkaudio dependency on general WMA code.
* build: cosmetics: Group hwaccel OBJS declarations togetherDiego Biurrun2014-09-04
|
* fdctdsp: cosmetics: Drop one unnecessary if-block levelDiego Biurrun2014-09-03
|
* wma: K&R formatting cosmeticsGabriel Dume2014-09-03
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* ismindex: recover from completely empty streamsMika Raento2014-09-03
| | | | | | | This creates best-effort results from input that is missing stream contents, there are warnings printed when this happens. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: HEVC/H.265 supportThomas Volkert2014-09-03
| | | | | | As specified in draft-ietf-payload-rtp-h265-06. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* time: Use clock_gettime if the monotonic clock is availableLuca Barbato2014-09-03
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* x11grab: Refactor pixel format parsingLuca Barbato2014-09-03
|
* x11grab: Fallback to normal XImage if SHM is not supportedLuca Barbato2014-09-03
|
* ppc: Support little endian intreadwriteLuca Barbato2014-09-03
|
* mpegts: Allow custom max resync sizeLuca Barbato2014-09-03
|
* texi2pod: Make it output a single encoding stringLuca Barbato2014-09-03
| | | | | Intermixing =encoding utf-8 in the file can confuse some pod2man implementations.
* x265: Use the encoder defaultsLuca Barbato2014-09-03
| | | | Reset the settings as it is done for x264.
* wmv2: K&R formatting cosmeticsGabriel Dume2014-09-02
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* xvid: Add C IDCTPascal Massimino2014-09-02
| | | | | | Thanks to Pascal Massimino and Michael Militzer for relicensing as LGPL. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* idctdsp: Add global function pointers for {add|put}_pixels_clamped functionsDiego Biurrun2014-09-02
| | | | | | These function pointers already existed in the ARM code. Adding them globally allows calls to the function pointers to access arch-optimized versions of the functions transparently.
* get_bits: Rename HAVE_BITS_REMAINING --> BITS_AVAILABLEDiego Biurrun2014-09-02
| | | | The HAVE_ prefix is reserved for macros set by configure.
* flv: K&R formatting cosmeticsGabriel Dume2014-09-02
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* asv: K&R formatting cosmeticsGabriel Dume2014-09-02
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* 8svx: Return proper error codesGabriel Dume2014-09-02
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* ismindex: improve diagnosticsMika Raento2014-09-02
| | | | | | This improves error messages for completely and somewhat broken inputs. Signed-off-by: Martin Storsjö <martin@martin.st>
* mpeg4videodec: Fix low_delay error messageGabriel Dume2014-09-01
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* aac_adtstoasc_bsf: Return proper error codeGabriel Dume2014-09-01
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* dxva2: Clean up definition of _WIN32_WINNTDiego Biurrun2014-09-01
| | | | | | Only set a value if _WIN32_WINNT is undefined or smaller than 0x0600. This is cleaner than unconditional definition and avoids a number of redefinition warnings. Also only define a value in one of the two dxva2 headers.
* dxva2: Pass variable of correct type to IDirectXVideoDecoder_GetBuffer()Diego Biurrun2014-09-01
| | | | This avoids related incompatible pointer type warnings.
* avcodec: fix missing doxygen comment markerMichael Niedermayer2014-09-01
|
* license: Mention that vf_interlace is GPL, not LGPLDiego Biurrun2014-08-28
|
* matroskaenc: convert avstream stereo3d side data during encodingVittorio Giovara2014-08-28
| | | | Write the StereoMode Embl to bitstream.
* matroskadec: parse stereo mode on decodingVittorio Giovara2014-08-28
| | | | | | | | | Convert the Matroska stereo format to the Stereo3D format, and add a Stereo3D side data to the stream. Bump the doctype version supported. Bug-Id: 728 / https://bugs.debian.org/757185
* avcodec: add stream-level stereo3d side dataVittorio Giovara2014-08-28
|