Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | wma: K&R formatting cosmetics | Gabriel Dume | 2014-09-03 | 6 | -1758/+1747 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | ismindex: recover from completely empty streams | Mika Raento | 2014-09-03 | 1 | -0/+6 |
| | | | | | | | 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 support | Thomas Volkert | 2014-09-03 | 6 | -1/+379 |
| | | | | | | 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 available | Luca Barbato | 2014-09-03 | 2 | -2/+12 |
| | | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org> | ||||
* | x11grab: Refactor pixel format parsing | Luca Barbato | 2014-09-03 | 1 | -60/+57 |
| | |||||
* | x11grab: Fallback to normal XImage if SHM is not supported | Luca Barbato | 2014-09-03 | 1 | -26/+34 |
| | |||||
* | ppc: Support little endian intreadwrite | Luca Barbato | 2014-09-03 | 1 | -24/+40 |
| | |||||
* | mpegts: Allow custom max resync size | Luca Barbato | 2014-09-03 | 1 | -2/+22 |
| | |||||
* | texi2pod: Make it output a single encoding string | Luca Barbato | 2014-09-03 | 1 | -2/+3 |
| | | | | | Intermixing =encoding utf-8 in the file can confuse some pod2man implementations. | ||||
* | x265: Use the encoder defaults | Luca Barbato | 2014-09-03 | 1 | -0/+6 |
| | | | | Reset the settings as it is done for x264. | ||||
* | wmv2: K&R formatting cosmetics | Gabriel Dume | 2014-09-02 | 4 | -362/+382 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | xvid: Add C IDCT | Pascal Massimino | 2014-09-02 | 6 | -11/+337 |
| | | | | | | 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 functions | Diego Biurrun | 2014-09-02 | 6 | -23/+32 |
| | | | | | | 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_AVAILABLE | Diego Biurrun | 2014-09-02 | 2 | -4/+4 |
| | | | | The HAVE_ prefix is reserved for macros set by configure. | ||||
* | flv: K&R formatting cosmetics | Gabriel Dume | 2014-09-02 | 3 | -49/+56 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | asv: K&R formatting cosmetics | Gabriel Dume | 2014-09-02 | 4 | -173/+210 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | 8svx: Return proper error codes | Gabriel Dume | 2014-09-02 | 1 | -5/+5 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | ismindex: improve diagnostics | Mika Raento | 2014-09-02 | 1 | -14/+43 |
| | | | | | | This improves error messages for completely and somewhat broken inputs. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | mpeg4videodec: Fix low_delay error message | Gabriel Dume | 2014-09-01 | 1 | -1/+1 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | aac_adtstoasc_bsf: Return proper error code | Gabriel Dume | 2014-09-01 | 1 | -1/+1 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | dxva2: Clean up definition of _WIN32_WINNT | Diego Biurrun | 2014-09-01 | 2 | -1/+4 |
| | | | | | | 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 Biurrun | 2014-09-01 | 3 | -4/+12 |
| | | | | This avoids related incompatible pointer type warnings. | ||||
* | avcodec: fix missing doxygen comment marker | Michael Niedermayer | 2014-09-01 | 1 | -1/+1 |
| | |||||
* | license: Mention that vf_interlace is GPL, not LGPL | Diego Biurrun | 2014-08-28 | 1 | -0/+1 |
| | |||||
* | matroskaenc: convert avstream stereo3d side data during encoding | Vittorio Giovara | 2014-08-28 | 1 | -18/+76 |
| | | | | Write the StereoMode Embl to bitstream. | ||||
* | matroskadec: parse stereo mode on decoding | Vittorio Giovara | 2014-08-28 | 4 | -2/+78 |
| | | | | | | | | | 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 data | Vittorio Giovara | 2014-08-28 | 5 | -1/+69 |
| | |||||
* | matroska: list supported extensions | Vittorio Giovara | 2014-08-28 | 1 | -0/+1 |
| | |||||
* | x11grab: Use a typedef for the context, as most other code does | Luca Barbato | 2014-08-28 | 1 | -10/+10 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | x11grab: Drop a spurious space in the extension reporting message | Luca Barbato | 2014-08-28 | 1 | -1/+1 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | x11grab: Small near-cosmetic refactorings | Luca Barbato | 2014-08-28 | 1 | -20/+15 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | x11grab: K&R formatting cosmetics | Luca Barbato | 2014-08-28 | 1 | -136/+142 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | x86: xvid: K&R formatting cosmetics | Diego Biurrun | 2014-08-27 | 2 | -489/+489 |
| | |||||
* | cosmetics: Make naming scheme of Xvid IDCT consistent with other IDCTs | Diego Biurrun | 2014-08-27 | 9 | -52/+56 |
| | |||||
* | x86: xvid_idct: Drop unused definitions | Diego Biurrun | 2014-08-27 | 2 | -20/+0 |
| | |||||
* | pulse: Set the wallclock option as default | Luca Barbato | 2014-08-27 | 1 | -1/+1 |
| | |||||
* | vc1: Initialize start_code_found to 0 | Luca Barbato | 2014-08-27 | 1 | -1/+1 |
| | | | | Leftover of a4d3c20035946cbc1509aec2dc28d51c2a2f9a8e. | ||||
* | avconv: fix parsing the AVOptions for -target | Anton Khirnov | 2014-08-27 | 1 | -0/+4 |
| | | | | CC: libav-stable@libav.org | ||||
* | avconv: fix the muxrate values for -target | Anton Khirnov | 2014-08-27 | 1 | -2/+2 |
| | | | | | | The mpegenc private option values are in 50-byte units. CC: libav-stable@libav.org | ||||
* | mpegenc: limit the maximum muxrate | Anton Khirnov | 2014-08-27 | 1 | -1/+1 |
| | | | | | | It is written to the file as a 22-bit value. CC: libav-stable@libav.org | ||||
* | h264: fully check cropping amount from sps | Vittorio Giovara | 2014-08-26 | 1 | -1/+3 |
| | | | | | Even if sps.crop is true, the cropping amount may be zero. Fixes a sample with a valid but broken container cropping. | ||||
* | libxvid: K&R formatting cosmetics | Gabriel Dume | 2014-08-26 | 3 | -309/+329 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | doc: fix a typo | Gabriel Dume | 2014-08-26 | 1 | -1/+1 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | os_support: Adjust an outdated #endif comment | Diego Biurrun | 2014-08-26 | 1 | -1/+1 |
| | |||||
* | mpeg: Write H264 streams at offset 2 | Luca Barbato | 2014-08-26 | 2 | -4/+10 |
| | | | | It hints that the content is H264 according to HD-DVD. | ||||
* | vc1: Fix the skip condition | Luca Barbato | 2014-08-26 | 1 | -2/+3 |
| | | | | | As written in the comment above, skip must be added only if a start code is found. | ||||
* | vfwcap: Add fallback define for HWND_MESSAGE | Diego Biurrun | 2014-08-25 | 1 | -0/+5 |
| | | | | Some obsolete versions of the MinGW32 runtime (<4.0.0) lack the definition. | ||||
* | libavformat: use MSG_NOSIGNAL when applicable | Rémi Denis-Courmont | 2014-08-25 | 4 | -4/+8 |
| | | | | | | | If the remote end of a connection oriented socket hangs up, generating an EPIPE error is preferable over an unhandled SIGPIPE signal. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | lavf: add AVFormatContext.max_ts_probe | Anton Khirnov | 2014-08-25 | 5 | -1/+12 |
| | | | | | It allows to configure how long will avformat_find_stream_info() wait to get the first timestamp. | ||||
* | doc/APIchanges: fill in missing hashes and dates | Anton Khirnov | 2014-08-25 | 1 | -29/+29 |
| |