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
2011-01-30Replace dprintf with av_dlogLuca Barbato
dprintf clashes with POSIX.1-2008 (cherry picked from commit dfd2a005eb29e4b9f2fdb97036eb7d5c38ae4bd4)
2011-01-28Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit d36beb3f6902b1217beda576aa18abf7eb72b03c)
2010-11-16Make DNxHD encoder produce files that are strictly VC-3 compatibleBaptiste Coudurier
Originally committed as revision 25756 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-17Use LOCAL_ALIGNED macro for local arraysMåns Rullgård
Originally committed as revision 21866 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-22Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård
Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-20avoid integer overflow in dnxhd encoder, fixes #1557Baptiste Coudurier
Originally committed as revision 20557 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-20clarify why the encoder is failingBaptiste Coudurier
Originally committed as revision 20556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-12Reindent after removing the outer for loops in the execute2 patchReimar Döffinger
Originally committed as revision 20212 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-12Move dnxhdenc to execute2 multithreading API.Reimar Döffinger
This allows for some simplifications like removing some outer loops and gives much better performance for thread_count > number of idle CPUs. Originally committed as revision 20211 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-06Remove casts that are useless since the argument is void *.Reimar Döffinger
Originally committed as revision 20177 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21Use a custom radix sort implementation instead of qsort in dnxhd encoder.Reimar Döffinger
This is mainly to avoid test failures due to implementation-defined behaviour of qsort when elements are equal, giving different results for each of FreeBSD, Linux/glibc and Solaris. In addition it is about 35 % faster, effect on overall speed is minimal though (< 2%). Regression tests are unchanged (i.e. identical to Linux/glibc). Originally committed as revision 19949 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-18fix uninitialized memory in dnxhd encoderBaptiste Coudurier
Originally committed as revision 19912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Mark all pix_fmts and supported_framerates compound literals as const.Reimar Döffinger
Makes no difference for gcc but at least icc can put them in .rodata then. Originally committed as revision 19789 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Rename CHECKED_ALLOC(Z) to FF_ALLOC(Z)_OR_GOTO and add context and labelRamiro Polla
parameters. Originally committed as revision 19776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-08data parameter of dnxhd_encode_picture() should not be const.Daniel Verkamp
Fixes "dnxhdenc.c:805: warning: initialization from incompatible pointer type". patch by Daniel Verkamp, daniel drv nu Originally committed as revision 18773 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-12dnxhd get_pixels_8x4_sym sse2Baptiste Coudurier
Originally committed as revision 16072 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-12Move get_pixels_8x4 before init func to avoid useless forward declaration.Baptiste Coudurier
Originally committed as revision 16071 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-12rename 4x8 to 8x4 to match widthxheight consistentlyBaptiste Coudurier
Originally committed as revision 16070 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-11move structure definitions in their own headerBaptiste Coudurier
Originally committed as revision 16051 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-11cosmeticsBaptiste Coudurier
Originally committed as revision 16050 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-11use dsp clear_blockBaptiste Coudurier
Originally committed as revision 16049 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-12Making it easier to send arbitrary structures as work orders to MT workersRoman Shaposhnik
Originally committed as revision 15804 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-13Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini
Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-02cosmetics, remove table_ prefixBaptiste Coudurier
Originally committed as revision 13617 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-02optimize, merge offset bits in vlc codeBaptiste Coudurier
Originally committed as revision 13614 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27consistency cosmetics: indices --> indexesDiego Biurrun
Originally committed as revision 13444 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-12Replace one more occurrence of -1 with PIX_FMT_NONE.Carl Eugen Hoyos
Fixes icc warning #188: enumerated type mixed with another type Originally committed as revision 13136 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-06export dnxhd encoded picture qualityBaptiste Coudurier
Originally committed as revision 13071 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-27Add long names to many AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constsMichael Niedermayer
I have underestimated this a little, and these are just some ... Originally committed as revision 11708 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-18add bitrate helper to choose all dnxhd variantsBaptiste Coudurier
Originally committed as revision 11260 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-02indentationBaptiste Coudurier
Originally committed as revision 11134 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-02dnxhd 720p encoding and decoding supportBaptiste Coudurier
Originally committed as revision 11133 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-02cosmetics, encode_variance -> encode_fastBaptiste Coudurier
Originally committed as revision 11132 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-02fix corner case when qscale 1 bits < frame bits but max bits with worst ↵Baptiste Coudurier
padding > frame bits Originally committed as revision 11131 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-09better lambda search methodBaptiste Coudurier
Originally committed as revision 10697 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-08dnxhd 36mbit supportBaptiste Coudurier
Originally committed as revision 10689 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-08typo weigth->weightBaptiste Coudurier
Originally committed as revision 10687 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-08DNxHD (SMPTE VC-3) encoderBaptiste Coudurier
Originally committed as revision 10682 to svn://svn.ffmpeg.org/ffmpeg/trunk