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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-10-01dpcm: return error if packet is too smallJustin Ruggles
2011-10-01dpcm: use smaller data types for static tablesJustin Ruggles
2011-10-01dpcm: use sol_table_16 directly instead of through the DPCMContext.Justin Ruggles
2011-10-01dpcm: replace short with int16_tJustin Ruggles
2011-10-01dpcm: check to make sure channels is 1 or 2.Justin Ruggles
2011-10-01dpcm: misc pretty-printingJustin Ruggles
2011-10-01dpcm: remove unnecessary variable by using bytestream functions.Justin Ruggles
Uses 'buf' directly instead of a separate iterator variable 'in'.
2011-10-01dpcm: move codec-specific variable declarations to their corresponding ↵Justin Ruggles
decoding blocks.
2011-10-01dpcm: consistently use the variable name 'n' for the next input byte.Justin Ruggles
2011-10-01dpcm: output AV_SAMPLE_FMT_U8 for Sol DPCM subcodecs 1 and 2.Justin Ruggles
Uses the native sample format for the codec instead of left-shifting all samples by 8.
2011-10-01dpcm: calculate and check actual output data size prior to decoding.Justin Ruggles
2011-10-01dpcm: factor out the stereo flag calculationJustin Ruggles
2011-10-01dpcm: cosmetics: rename channel_number to chJustin Ruggles
Make the code easier to read.
2011-09-24Use explicit struct initializers for AVCodec declarations.Diego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-11Remove final semicolon from some macrosMans Rullgard
This avoids double semicolons after macro expansion. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-26Add 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>
2010-11-12Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini
SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-02Remove redundant and harmful explicit filename after @file Doxygen command.Diego Biurrun
Originally committed as revision 23971 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
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-02cosmetics: Reformat long_names so that "DPCM" comes first.Diego Biurrun
Originally committed as revision 17721 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
2009-01-12Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun
Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-18cosmetics: remove one unneeded spaceKostya Shishkov
Originally committed as revision 16211 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-31Modify all codecs to report their supported input and output sample format(s).Peter Ross
Originally committed as revision 14482 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-25mark read-only data as constStefan Gehrer
Originally committed as revision 13947 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-05-15DPCM codec long names, patch by Stefano Sabatini, stefano.sabatini-lala poste itStefano Sabatini
Originally committed as revision 13156 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-21Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng
Originally committed as revision 12525 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-11-01simplify dpcm decoders declaration using a macroAurelien Jacobs
Originally committed as revision 10898 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-22Guard against output buffer overflowsKostya Shishkov
Originally committed as revision 10548 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12use av_clip_int16() where it makes senseAurelien Jacobs
Originally committed as revision 10078 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-20rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi
Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-07-06Mark some read-only datastructures as const.Stefan Huehner
patch by Stefan Huehner, stefan & at & huehner & dot & org Originally committed as revision 5639 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-09-28support for Sierra Online audio files and Apple QuickDraw codec,Mike Melanson
courtesy of Konstantin Shishkov Originally committed as revision 3529 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-03-14remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->Mike Melanson
MKTAG/MKBETAG Originally committed as revision 2886 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-01-31handle 0-length buffersMike Melanson
Originally committed as revision 2731 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-19fix Interplay DPCM (frames are intracoded, predictors do not carryMike Melanson
forward to next block, initial predictors go to the output) Originally committed as revision 2294 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-08New fringe codecs: WC3/Xan video, Xan DPCM, DK3 & DK4 ADPCMMike Melanson
Originally committed as revision 2217 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-02initial commit for Id RoQ and Interplay MVE multimedia subsystemsMike Melanson
Originally committed as revision 2195 to svn://svn.ffmpeg.org/ffmpeg/trunk