summaryrefslogtreecommitdiff
path: root/doc/bitstream_filters.texi
Commit message (Collapse)AuthorAge
...
* | doc/bitstream_filters: Fix project name after mergeMichael Niedermayer2017-03-26
| | | | | | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | Merge commit '89b35a139e838deeb32ec20d8d034c81014401d0'James Almer2017-03-23
|\| | | | | | | | | | | | | * commit '89b35a139e838deeb32ec20d8d034c81014401d0': lavc: add a bitstream filter for extracting extradata from packets Merged-by: James Almer <jamrial@gmail.com>
| * lavc: add a bitstream filter for extracting extradata from packetsAnton Khirnov2016-10-16
| | | | | | | | | | This is intended as a replacement for the 'split' function exported by some parsers.
| * doc: Fix some obsolete references to av* tools as ff* toolsVicente Jimenez Aguilar2013-02-18
| | | | | | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> CC: libav-stable@libav.org
* | doc/bsfs: various improvementsMoritz Barsnick2016-11-17
| | | | | | | | | | | | | | | | | | | | | | | | | | - Restored alphabetical order. - Enhanced sections aac_adtstoasc, dca_core, h264_mp4toannexb. - Added sections hevc_mp4toannexb and vp9_superframe. - Renamed (if required) and filled previously empty sections mjpegadump, mov2textsub/text2movsub, mp3decomp, and remove_extra. - Fixes ticket #3198. Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Lou Logan <lou@lrcd.com>
* | doc/bsfs: Fix bsf options divider in documentationJan Sebechlebsky2016-08-13
| | | | | | | | | | | | | | | | The actual implementation uses ':' divider, not '/' as documented. Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* | avcodec: add dca core extraction bsfPaul B Mahol2016-03-28
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avcodec: add unpack packed B-frames bitstream filterAndreas Cadhalpun2015-04-05
| | | | | | | | | | | | | | Fixes Ticket #2913 Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc: mention the noise_bsf parameter in the docsChristophe Gisquet2014-12-01
| | | | | | | | | | | | | | This looks more like a seed than an amount, as the variable name could lead to think. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffmpeg: take bsf arguments from the command lineChristophe Gisquet2014-11-30
| | | | | | | | | | | | | | | | | | | | | | | | | | The format is now: -bsf:X filter1[=opt1=str1/opt2=str2],filter2 ie the parameters are appended after the filter name using '='. As ',' has been reserved already for the list of filters, '/' is just an example of token separation for now, but that could become part of the API to avoid each bsf using its own tokenization. The proper solution would be using AVOption, but this is overkill for now. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/bitstream_filters: document imxdumpLou Logan2014-06-18
| | | | | | | | | | | | | | Partially addresses ticket #3198. Signed-off-by: Lou Logan <lou@lrcd.com> Tested-by: Dave Rice <dave@dericed.com>
* | doc/bsf: document noise bitstream filterLou Logan2014-06-02
| | | | | | | | | | | | | | Partially addresses ticket #3198. Signed-off-by: Lou Logan <lou@lrcd.com> Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* | doc/bitstream_filters: remove mp3_header_decompress filterStefano Sabatini2013-12-14
| | | | | | | | It was removed in commit c6080d89009056530119ab794ad02e4d515c7754.
* | doc/bitstream_filters: document dump_extraStefano Sabatini2013-07-17
| |
* | doc/bitstream_filters: amend name of some bitstream filtersStefano Sabatini2013-07-14
| |
* | doc/bitstream_filters: document the chomp filterStefano Sabatini2013-06-26
| | | | | | | | TODO: add some meaningful examples.
* | doc/bitstream-filters.texi: add documentation for the aac_adtstoasc filterStefano Sabatini2013-06-26
| | | | | | | | Based on the notes in libavcodec/aac_adtstoasc_bsf.c.
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-02-25
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: docs: use -bsf:[vas] instead of -[vas]bsf. mpegaudiodec: Prevent premature clipping of mp3 input buffer. lavf: move the packet keyframe setting code. oggenc: free comment header for all codecs lcl: error out if uncompressed input buffer is smaller than framesize. mjpeg: abort decoding if packet is too large. golomb: use HAVE_BITS_REMAINING() macro to prevent infloop on EOF. get_bits: add HAVE_BITS_REMAINING macro. lavf/output-example: use new audio encoding API correctly. lavf/output-example: more proper usage of the new API. tiff: Prevent overreads in the type_sizes array. tiff: Make the TIFF_LONG and TIFF_SHORT types unsigned. apetag: do not leak memory if avio_read() fails apetag: propagate errors. SBR DSP x86: implement SSE sbr_hf_g_filt SBR DSP x86: implement SSE sbr_sum_square_sse SBR DSP: use intptr_t for the ixh parameter. Conflicts: doc/bitstream_filters.texi doc/examples/muxing.c doc/ffmpeg.texi libavcodec/golomb.h libavcodec/x86/Makefile libavformat/oggenc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * docs: use -bsf:[vas] instead of -[vas]bsf.John Van Sickle2012-02-24
| | | | | | | | | | | | The latter syntax is now invalid. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | doc/bistream_filters.texi: add documentation for the h264_mp4toannexb filterStefano Sabatini2012-01-14
| |
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-12-10
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: isom: sort and pretty-print codec_movaudio_tags[] isom: remove pointless comments in codec_movaudio_tags[] isom: remove commented-out tag for vorbis movenc: write 'chan' tag for AC-3 in MOV mov: add support for reading and writing the 'chan' tag audioconvert: add some additional channel and channel layout macros audioconvert: change 7.1 "wide" layout to use side surround channels movenc: simplify handling of pcm vs. adpcm vs. other compressed codecs doc: update documentation to use avconv doc: update demuxers section doc: extend external library coverage doc: split platform specific information doc: port the git-howto to texinfo doc: provide fallback css and customize @float doc: document fate in a texinfo doxy: change hue value to match our green Conflicts: doc/fate.txt doc/ffserver.texi doc/general.texi doc/muxers.texi doc/protocols.texi doc/t2h.init libavformat/isom.c libavformat/mov.c libavutil/avutil.h tests/ref/acodec/pcm_s16be tests/ref/acodec/pcm_s24be tests/ref/acodec/pcm_s32be tests/ref/acodec/pcm_s8 tests/ref/lavf/mov Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * doc: update documentation to use avconvLuca Barbato2011-12-09
| |
* | Revert "replace FFmpeg with Libav in doc/"Michael Niedermayer2011-03-17
|/ | | | | | | | This reverts commit f8a45fa1b1764b34d4263eacd93411e8ba0484a4. Conflicts: doc/optimization.txt
* replace FFmpeg with Libav in doc/Janne Grunau2011-03-16
| | | | unless it stands for ffmpeg the program or is historic
* MJPEG/AVI1 to JPEG/JFIF bitstream filter.Nicolas George2010-11-11
| | | | Originally committed as revision 25721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a file for bitstream filters documentation.Stefano Sabatini2010-11-08
Based on a patch by Nicolas George <@var{name}.@var{surname}@@normalesup.@code{org}>. Originally committed as revision 25709 to svn://svn.ffmpeg.org/ffmpeg/trunk