Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-02dv: Move DV VLC data tables out of header fileDiego Biurrun
2013-11-15dv: Split DV data table declarations into their own headerDiego Biurrun
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.
2013-01-23Drop DCTELEM typedefDiego Biurrun
It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2012-05-08dv: Split profile handling code into a separate file.Diego Biurrun
2012-04-16dv: Merge dvquant.h into dvdata.c where all other DV tables reside.Diego Biurrun
2012-03-28dvenc: print allowed profiles if the video doesn't conform to any of them.Anton Khirnov
2012-03-27dv: Split off DV video decoder into its own file.Diego Biurrun
2012-02-10dv: Move tables from dvdata.h to dvdata.cAlex Converse
2012-02-10dv: Move a table used only by the demuxer out of a shared header.Alex Converse
2012-02-10dv: Move functions used only by the encoder out of a shared header.Alex Converse
2012-02-10dv: Split dvdata.h into dvdata.h and dvquant.hAlex Converse
2011-10-20lavc: use avpriv_ prefix for some dv symbols used in lavf.Anton Khirnov
Specifically, ff_dv_frame_profile and ff_dv_codec_profile.
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-21Split VLC-related tables out of dvdata.h to make it easier to add supportReimar Döffinger
for hard-coding tables. Originally committed as revision 22620 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-16Split parts of dvdata.h into dvdata.c, this ensures that things likeReimar Döffinger
work_chunks_* and dv_idct_factor_* variables appear only once in the binary instead of 3 times. Saves 3264 bytes in .rodata and 312416 bytes in .bss on x86_64. Originally committed as revision 20246 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-24Allow decoding of 625/50 (PAL) with video_stype==1.Maksym Veremeyenko
Patch by Maksym Veremeyenko, verem m1stereo tv Originally committed as revision 20018 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-15check if frame size matches old sys and assumes corrupted input, fixes #1192Baptiste Coudurier
Originally committed as revision 19192 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01fix decoding 720p50 audio samplesBaptiste Coudurier
Originally committed as revision 16906 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-19cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun
Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-20Making idct factor tables dynamically allocatedRoman Shaposhnik
Originally committed as revision 15885 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-18Getting rid of huge static DV tablesRoman Shaposhnik
Originally committed as revision 15874 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-13Taking advantage of the new ->execute APIRoman Shaposhnik
Originally committed as revision 15806 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-08implementing more efficient (and direct) allocation of work for DV codec workersRoman Shaposhnik
Originally committed as revision 15788 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-25prettyprinting cosmeticsDiego Biurrun
Originally committed as revision 15682 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-25spelling cosmeticsDiego Biurrun
Originally committed as revision 15681 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-22uses FF_ARRAY_ELEMS() where appropriateAurelien Jacobs
Originally committed as revision 15662 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-07replacing frame_rate and frame_rate_base with an AVRational time_baseRoman Shaposhnik
Originally committed as revision 15584 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-07cosmetic updates as per Michael's suggestionRoman Shaposhnik
Originally committed as revision 15582 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-07vertically aligning as per Michael's suggestionRoman Shaposhnik
Originally committed as revision 15581 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-07Doxygenizing the commentsRoman Shaposhnik
Originally committed as revision 15578 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-02spelling cosmeticsDiego Biurrun
Originally committed as revision 15518 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-31Globally rename the header inclusion guard names.Stefano Sabatini
Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-29Intial implementation of the DV100 (AKA DVCPRO HD) decoder and demuxer asRoman Shaposhnik
specified in SMPTE 370M Originally committed as revision 15010 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-28Introducing video_stype for holding the value of VAUX source packRoman Shaposhnik
and simplifying dv_frame_profile Originally committed as revision 15007 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-19Making block size in bits variable and dependent on the DV specRoman Shaposhnik
Originally committed as revision 14842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-19Making the number of blocks per macroblock dependent on the DV streamRoman Shaposhnik
specification Originally committed as revision 14841 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-19Introducing DV_MAX_BPM macro instead of a hardcoded value for theRoman Shaposhnik
highest number of blocks per macroblock Originally committed as revision 14840 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-11Fixing the units in DV50 tables (both coordinates areRoman Shaposhnik
supposed to be in units of 8 pixels) and simplifying the calculations of y_ptr and c_offset. Originally committed as revision 14693 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-11Coalescing the un-weighting and de-quantization steps for fasterRoman Shaposhnik
processing Originally committed as revision 14691 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-09Use full path for #includes from another directory.Diego Biurrun
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01some constMichael Niedermayer
Originally committed as revision 11758 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-09Fix random typos.Diego Biurrun
Originally committed as revision 11477 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun
Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-17 * making profile selection a bit more tolerant to the badly broken streamsRoman Shaposhnik
Originally committed as revision 9710 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17add a comment to indicate which #endif belong to which #defineGuillaume Poirier
Originally committed as revision 9356 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17add multiple inclusion guards to headersMåns Rullgård
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-17include all prerequisites in header filesMåns Rullgård
Originally committed as revision 9344 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-30rename attribute_unused to av_unused and moves its declaration to common.hCarl Eugen Hoyos
patch by Carl Eugen Hoyos cehoyos chez ag or at original thread: [FFmpeg-devel] [PATCH] attribute_unused -> av_unused date: 05/29/2007 01:23 PM Originally committed as revision 9155 to svn://svn.ffmpeg.org/ffmpeg/trunk