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
2009-09-06Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger
.data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-31Change av_log() calls surrounded by '#ifdef DEBUG' into dprintf macros.Diego Biurrun
Originally committed as revision 19550 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-20ac3enc: log a warning message if the channel layout is not specified atJustin Ruggles
the time of codec initialization. Originally committed as revision 18631 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-19Add channel layout support to the AC-3 encoder.Justin Ruggles
Originally committed as revision 18623 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17ac3enc: reorder input channels to AC-3 channel orderJustin Ruggles
Originally committed as revision 18540 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename pbBufPtr() to put_bits_ptr().Stefano Sabatini
The new name is more readable and consistent with the FFmpeg naming style. Originally committed as revision 18497 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-12Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini
put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-06Remove duplicated MUL16 macro definition, fixes the warning:Diego Biurrun
libavcodec/ac3enc.c:119:1: warning: "MUL16" redefined Originally committed as revision 17832 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-22Add missing av_cold in static init/close functions.Daniel Verkamp
Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 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-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-09-01create a separate codec_id for E-AC-3Justin Ruggles
Originally committed as revision 15143 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-20commit the OKed parts of the E-AC-3 decoderJustin Ruggles
Originally committed as revision 14860 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-03cosmetics: make all references to AC-3 capitalized and hyphenatedJustin Ruggles
Originally committed as revision 14523 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-06-08pass bap table to ff_ac3_bit_alloc_calc_bap()Justin Ruggles
Originally committed as revision 13694 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-04-28Add long names to AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 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-03-20two more typos spotted by MikeDiego Biurrun
Originally committed as revision 12524 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-20british_english--;Diego Biurrun
Originally committed as revision 12522 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-21Remove two unused variables.Diego Biurrun
Originally committed as revision 11584 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-21Remove unnecessary forward declaration.Diego Biurrun
Originally committed as revision 11583 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-13Get rid of fft_rev table, use ff_reverse and a shift.Reimar Döffinger
Reduces maximum allowed value for MDCT_NBITS to 10 (current value is 9) Originally committed as revision 11519 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-12Use FFSWAP instead of "manual" swapReimar Döffinger
Originally committed as revision 11518 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-05improve CRC APIAurelien Jacobs
- don't export any global var - provide either generated or hardcoded tables Originally committed as revision 11409 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-28use cutoff frequency to adjust bandwidth in ac3 encoderJustin Ruggles
Originally committed as revision 11338 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-28use bps instead of kbps for bitrateJustin Ruggles
Originally committed as revision 11337 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-28Do not give advice for which bitrate to choose.Justin Ruggles
Originally committed as revision 11334 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-28fix typoJustin Ruggles
Originally committed as revision 11333 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-09cosmetics: rename common ac3 variablesJustin Ruggles
Originally committed as revision 11196 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-09cosmetics: rename ac3 bit allocation variablesJustin Ruggles
Originally committed as revision 11194 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-09cosmetics: rename ac3 tablesJustin Ruggles
Originally committed as revision 11193 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-27sync message with modern ffmpeg bitrate option syntax.D Richard Felker III
note: this message should probably be tweaked; i'm not sure that it's a good idea for lavc to be recommending ffmpeg command line options as it's a general-purpose library. Originally committed as revision 11094 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-19Fix the self tests which are contained in some codecs and are using random().Panagiotis Issaris
Originally committed as revision 9755 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-15move some common values to ac3.h and utilize themJustin Ruggles
Originally committed as revision 9679 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-02Use AV_xx throughout libavcodecRamiro Polla
Originally committed as revision 9169 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-22cosmetics. align and condense.Justin Ruggles
Originally committed as revision 8479 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-22simplifyJustin Ruggles
Originally committed as revision 8478 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-22utilize multi-stage AC-3 bit allocation. speeds up encoding by 25-30%Justin Ruggles
Originally committed as revision 8477 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-19AC-3 encoded volume is too high. Revert revision 7160:Bill O'Shaughnessy
bring AC3 encoder output up to input volume level patch by Bill O'Shaughnessy % bill P oshaughnessy A gmail.com % + reg tests update gruntwork by me Original thread: date: Nov 21, 2006 11:36PM subject: [Ffmpeg-devel] Simpler Patch to bring AC3 encoder output up to input level Originally committed as revision 8444 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-11remove redundancy in AC-3 parser by using common tables from ac3tab.hJustin Ruggles
Originally committed as revision 8318 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-09Remove common code from AC-3 encoder and utilize ac3.c.Justin Ruggles
Originally committed as revision 8306 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-09simplify AC-3 bit allocationJustin Ruggles
Originally committed as revision 8302 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-09cosmetics. remove space before semi-colon.Justin Ruggles
Originally committed as revision 8301 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-24bring AC3 encoder output up to input volume levelBill O'Shaughnessy
patch by Bill O'Shaughnessy % bill P oshaughnessy A gmail.com % + reg tests update gruntwork by me Original thread: date: Nov 21, 2006 11:36 PM subject: [Ffmpeg-devel] Simpler Patch to bring AC3 encoder output up to input level Originally committed as revision 7160 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-14revert bad checkinMåns Rullgård
Originally committed as revision 7044 to svn://svn.ffmpeg.org/ffmpeg/trunk