summaryrefslogtreecommitdiff
path: root/libavcodec/dv.c
Commit message (Collapse)AuthorAge
* dv: K&R formatting cosmeticsGabriel Dume2014-09-09
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavc: export DV profile API used by muxer/demuxer as publicAnton Khirnov2014-07-09
|
* dv: Properly split decoder and encoder initializationDiego Biurrun2014-06-27
|
* dv: Replace a magic number by sizeof()Diego Biurrun2014-06-25
|
* dv: cosmetics, reindentAnton Khirnov2014-06-20
|
* dv: get rid of global non-const tablesAnton Khirnov2014-06-20
| | | | Instead, store them in the context and compute on each parameter change.
* dsputil: Move DV-specific ff_zigzag248_direct table to dvdataDiego Biurrun2014-04-04
|
* dv: use AVFrame API properlyAnton Khirnov2013-12-09
|
* dv: Split off DV video encoder into its own fileDiego Biurrun2013-12-02
|
* dv: Move DV VLC data tables out of header fileDiego Biurrun2013-12-02
|
* dv: Split DV data table declarations into their own headerDiego Biurrun2013-11-15
| | | | | | This is necessary to avoid target config settings bleeding into the host compilation process with hardcoded tables and the DV VLC tables no longer present as static tables in a header file.
* cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun2013-10-03
|
* lavc: move put_bits_left in put_bits.hLuca Barbato2013-06-28
|
* lavc decoders: properly initialize AVFrame.Anton Khirnov2013-03-08
|
* Remove unnecessary dsputil.h #includesDiego Biurrun2013-02-26
|
* dsputil: Move LOCAL_ALIGNED macros to libavutilDiego Biurrun2013-02-08
|
* Drop DCTELEM typedefDiego Biurrun2013-01-22
| | | | | | It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-08
|
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* dvenc: do not call dsputil functions with stride not a multiple of 16Mans Rullgard2012-05-01
| | | | | | | | Allowing dsputil functions to assume the stride is a multiple of 16 even for smaller block sizes can simplify their implementation. This appears to be the only place this guarantee is not met. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Remove lowres video decodingMans Rullgard2012-04-21
| | | | | | | This feature is complex, of questionable utility, and slows down normal decoding. Signed-off-by: Mans Rullgard <mans@mansr.com>
* dv: Initialize encoder tables during encoder init.Diego Biurrun2012-04-19
|
* dv: Merge dvquant.h into dvdata.c where all other DV tables reside.Diego Biurrun2012-04-16
|
* dv: Move static tables only used in one place to where they are used.Diego Biurrun2012-04-16
|
* cosmetics: Align codec declarationsMartin Storsjö2012-04-06
| | | | | | | Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
* dvenc: print allowed profiles if the video doesn't conform to any of them.Anton Khirnov2012-03-28
|
* dv: Split off DV video decoder into its own file.Diego Biurrun2012-03-27
|
* dvenc: switch to encode2().Anton Khirnov2012-02-17
|
* dsputil: Add ff_ prefix to the dsputil*_init* functionsMartin Storsjö2012-02-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* vlc/rl: Add ff_ prefix to the nonstatic symbolsMartin Storsjö2012-02-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* dv: Move functions used only by the encoder out of a shared header.Alex Converse2012-02-09
|
* dv: Split dvdata.h into dvdata.h and dvquant.hAlex Converse2012-02-09
|
* cosmetics: Drop unnecessary parentheses around return values.Diego Biurrun2011-12-30
|
* get_bits: remove A32 variantMans Rullgard2011-12-16
| | | | | | | | | | | | | | | | | The A32 bitstream reader variant is only used on ARMv5 and for Prores due to the larger bit cache this decoder requires. In benchmarks on ARMv5 (Marvell Sheeva) with gcc 4.6, the only statistically significant difference between ALT and A32 is a 4% advantage for ALT in FLAC decoding. There is thus no (longer) any reason to keep the A32 reader from this point of view. This patch adds an option to the ALT reader increasing the bit cache to 32 bits as required by the Prores decoder. Benchmarking shows no significant change in speed on Intel i7. Again, the A32 reader fails to justify its existence. Signed-off-by: Mans Rullgard <mans@mansr.com>
* dv: simplify bitstream splicing in dv_decode_ac()Mans Rullgard2011-11-26
| | | | | | This is simpler and fixes some overflow checker warnings. Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavc: use avpriv_ prefix for some dv symbols used in lavf.Anton Khirnov2011-10-20
| | | | Specifically, ff_dv_frame_profile and ff_dv_codec_profile.
* lavc: use designated initialisers for all codecs.Anton Khirnov2011-07-29
| | | | It's more readable and less prone to breakage.
* dv: fix comment wording mistakeClément Bœsch2011-07-05
|
* dv: fix valgrind use of uninitialised value warnings.Reimar Döffinger2011-07-05
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* dv: fix comment spellingClément Bœsch2011-07-05
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Replace some av_log/printf + #ifdef combinations by av_dlog.Diego Biurrun2011-06-07
|
* Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name().Stefano Sabatini2011-06-03
| | | | | This fixes warnings about avcodec_get_pix_fmt_name() being deprecated. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini2011-05-02
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Introduce slice threads flag.Ronald S. Bultje2011-04-21
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Replace more FFmpeg references by Libav.Diego Biurrun2011-04-17
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* In dv decoder, set sample aspect aspect ratio, fix issue #1612Baptiste Coudurier2010-09-27
| | | | Originally committed as revision 25232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dv: fix alignment of scratch bufferMåns Rullgård2010-08-20
| | | | Originally committed as revision 24854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add new decoder property max_lowres and do not init decoder if requested ↵Carl Eugen Hoyos2010-07-07
| | | | | | value is higher. Originally committed as revision 24098 to svn://svn.ffmpeg.org/ffmpeg/trunk