summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* lavfi: install libavfilter/vsrc_buffer.hAndrey Utkin2011-12-111-1/+1
| | | | | | It declares API necessary for filtering apps. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Remove extraneous semicolonsMans Rullgard2011-12-118-77/+77
| | | | | | These semicolons cause invalid empty top-level declarations. Signed-off-by: Mans Rullgard <mans@mansr.com>
* sdp: Restore the original mp4 format h264 extradata if convertedMartin Storsjö2011-12-111-0/+17
| | | | | | | | | If the sdp is generated before the rtp muxer is initialized (e.g. as when called from the rtsp muxer), this has to be done, otherwise the rtp muxer doesn't know that the input really is in mp4 format. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpenc: Add support for mp4 format h264Luca Abeni2011-12-111-3/+28
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpenc: Simplify code by introducing a separate end pointerMartin Storsjö2011-12-111-5/+5
| | | | | | Also remove redundant parentheses. Signed-off-by: Martin Storsjö <martin@martin.st>
* movenc: Use the actual converted sample for RTP hintingMartin Storsjö2011-12-113-9/+24
| | | | | | | | | | | | | If an annex b bitstream is muxed into mov, the actual written sample is reformatted to mp4 syntax before writing. Currently, the RTP hints that copy data from the normal video track, where the payload data might be offset compared to the original sample that the RTP hinting used (when 3 byte annex b startcodes have been converted into 4 byte mp4 format startcodes). Signed-off-by: Martin Storsjö <martin@martin.st>
* Fix a bunch of common typos.Diego Biurrun2011-12-1151-82/+83
|
* Warn about avserver being broken.Anton Khirnov2011-12-104-4/+8
| | | | Also remove mentions of it from other avtools' manuals.
* avconv: drop code for special handling of avserver streams.Anton Khirnov2011-12-101-44/+1
| | | | | | | | It's broken and doesn't work anyway. This patch means that avconv will ignore encoding options from the ffm file and will instead use whatever is provided on the commandline as for normal output.
* rawdec: don't set codec timebase.Anton Khirnov2011-12-102-10/+10
| | | | | It's not supposed to be set outside of lavc. Set r_frame_rate and avg_frame_rate instead.
* lavf doxy: add muxing stuff to lavf_encoding groupAnton Khirnov2011-12-101-4/+14
|
* lavf doxy: add demuxing stuff to lavf_decoding groupAnton Khirnov2011-12-101-8/+21
|
* lavf doxy: expand/reword metadata API doxy.Anton Khirnov2011-12-101-2/+8
|
* lavf doxy: add installed headers to groups.Anton Khirnov2011-12-103-0/+13
|
* lavf doxy: add avio groups into the lavf_io group.Anton Khirnov2011-12-101-0/+3
|
* lavf doxy: rename lavf I/O group to lavf_io.Anton Khirnov2011-12-101-1/+1
|
* lavf doxy: add metadata docs to the main lavf groupAnton Khirnov2011-12-101-0/+1
|
* ttadec: check channel count as read from extradata.Shitiz Garg2011-12-101-0/+5
| | | | | | | fixes floating-point exception due to channels being set to 0. fixes Bug 128. Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* Add CLJR encoding and decoding regression testsPaul B Mahol2011-12-103-0/+13
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* cljr: remove unused codePaul B Mahol2011-12-101-2/+0
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* flacdec: Support for tracks in cuesheet metadata blockPaul B Mahol2011-12-101-0/+27
| | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* ptx: fix inverted check for sufficient dataJanne Grunau2011-12-101-1/+1
| | | | Fix regression introduced in 2b53e69.
* flac muxer: fix writing of file header and STREAMINFO header from extradataJustin Ruggles2011-12-101-6/+4
| | | | fixes Bug 119
* ptx: emit a warning on insufficient picture dataJanne Grunau2011-12-101-3/+6
| | | | | | Return the whole packet as consumed in this case and not the size the packet should have had. Move the insufficient data check into the for condition to fix a ISO C90 error on bigendian.
* utvideo: add fate tests covering all codec variantsAneesh Dogra2011-12-109-0/+62
| | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* doc: update to refer to avconvLuca Barbato2011-12-101-39/+33
|
* doc: remove some stale entries from the faqLuca Barbato2011-12-101-135/+0
| | | | Some entries should be still amended.
* Dxtory capture format decoderKostya Shishkov2011-12-107-0/+115
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* isom: sort and pretty-print codec_movaudio_tags[]Justin Ruggles2011-12-091-55/+42
| | | | | original order is retained within the same tag or codec id to maintain the muxing/demuxing priority.
* isom: remove pointless comments in codec_movaudio_tags[]Justin Ruggles2011-12-091-17/+17
|
* isom: remove commented-out tag for vorbisJustin Ruggles2011-12-091-2/+0
|
* movenc: write 'chan' tag for AC-3 in MOVJustin Ruggles2011-12-091-0/+1
|
* mov: add support for reading and writing the 'chan' tagJustin Ruggles2011-12-095-2/+636
| | | | | | This implements reading the tag in the demuxer and adds support for writing it in the muxer. Some example channel layout tables for muxing are included for ac3, aac, and alac, but they are not utilized yet.
* audioconvert: add some additional channel and channel layout macrosJustin Ruggles2011-12-092-2/+17
|
* audioconvert: change 7.1 "wide" layout to use side surround channelsJustin Ruggles2011-12-092-2/+2
|
* movenc: simplify handling of pcm vs. adpcm vs. other compressed codecsJustin Ruggles2011-12-096-53/+28
| | | | | | Use Sound Sample Description Version 2 for all MOV files. Updated FATE references accordingly. Note that ADPCM is treated as compressed audio in version 2.
* doc: update documentation to use avconvLuca Barbato2011-12-096-84/+84
|
* doc: update demuxers sectionLuca Barbato2011-12-091-3/+3
| | | | Cleanup tags usage and update commandline examples.
* doc: extend external library coverageLuca Barbato2011-12-091-10/+65
|
* doc: split platform specific informationLuca Barbato2011-12-093-346/+360
| | | | Move the platform-specific information in its own file.
* doc: port the git-howto to texinfoLuca Barbato2011-12-092-0/+345
|
* doc: provide fallback css and customize @floatLuca Barbato2011-12-091-0/+86
| | | | Add "note" or "important" class to the generated div.
* doc: document fate in a texinfoLuca Barbato2011-12-093-45/+136
| | | | | Summarize the information provided in the wiki and the one provided in fate.txt
* doxy: change hue value to match our greenLuca Barbato2011-12-091-1/+1
|
* cljr: K&R cosmeticsDiego Biurrun2011-12-081-20/+23
|
* cljr: return a more sensible value when encountering invalid headersDiego Biurrun2011-12-081-1/+1
|
* cljr: drop unnecessary emms_c() calls without MMX codeDiego Biurrun2011-12-081-4/+0
|
* cljr: remove useless castsMans Rullgard2011-12-081-3/+3
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* cljr: group encode/decode parts under single ifdefsMans Rullgard2011-12-081-48/+40
| | | | | | | | This groups the encode/decode parts under single ifdefs and eliminates the encode_init() function as it merely calls common_init(). Also fix whitespace in moved code. Signed-off-by: Mans Rullgard <mans@mansr.com>
* cljr: remove stray semicolonMans Rullgard2011-12-081-1/+1
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
OpenPOWER on IntegriCloud