summaryrefslogtreecommitdiff
path: root/libavcodec/ac3enc.c
Commit message (Collapse)AuthorAge
* Use "const" qualifier for pointers that point to input data ofReimar Döffinger2010-07-24
| | | | | | | audio encoders. This is purely for clarity/documentation purposes. Originally committed as revision 24481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to bswap macrosMåns Rullgård2010-07-10
| | | | Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | 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
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ff_reverse in libavcodec to av_reverse in libavutil.Francesco Lavra2009-11-09
| | | | | | Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 20484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger2009-09-06
| | | | | | .data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change av_log() calls surrounded by '#ifdef DEBUG' into dprintf macros.Diego Biurrun2009-07-30
| | | | Originally committed as revision 19550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ac3enc: log a warning message if the channel layout is not specified atJustin Ruggles2009-04-20
| | | | | | the time of codec initialization. Originally committed as revision 18631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add channel layout support to the AC-3 encoder.Justin Ruggles2009-04-19
| | | | Originally committed as revision 18623 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ac3enc: reorder input channels to AC-3 channel orderJustin Ruggles2009-04-17
| | | | Originally committed as revision 18540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename pbBufPtr() to put_bits_ptr().Stefano Sabatini2009-04-13
| | | | | | | 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
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
| | | | Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini2009-04-12
| | | | | | put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated MUL16 macro definition, fixes the warning:Diego Biurrun2009-03-05
| | | | | | libavcodec/ac3enc.c:119:1: warning: "MUL16" redefined Originally committed as revision 17832 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing av_cold in static init/close functions.Daniel Verkamp2009-02-22
| | | | | | Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | 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
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* create a separate codec_id for E-AC-3Justin Ruggles2008-09-01
| | | | Originally committed as revision 15143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* commit the OKed parts of the E-AC-3 decoderJustin Ruggles2008-08-20
| | | | Originally committed as revision 14860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: make all references to AC-3 capitalized and hyphenatedJustin Ruggles2008-08-03
| | | | Originally committed as revision 14523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Modify all codecs to report their supported input and output sample format(s).Peter Ross2008-07-31
| | | | Originally committed as revision 14482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mark read-only data as constStefan Gehrer2008-06-24
| | | | Originally committed as revision 13947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass bap table to ff_ac3_bit_alloc_calc_bap()Justin Ruggles2008-06-07
| | | | Originally committed as revision 13694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* two more typos spotted by MikeDiego Biurrun2008-03-20
| | | | Originally committed as revision 12524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* british_english--;Diego Biurrun2008-03-20
| | | | Originally committed as revision 12522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove two unused variables.Diego Biurrun2008-01-21
| | | | Originally committed as revision 11584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary forward declaration.Diego Biurrun2008-01-21
| | | | Originally committed as revision 11583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of fft_rev table, use ff_reverse and a shift.Reimar Döffinger2008-01-13
| | | | | | 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
* Use FFSWAP instead of "manual" swapReimar Döffinger2008-01-12
| | | | Originally committed as revision 11518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve CRC APIAurelien Jacobs2008-01-04
| | | | | | | - don't export any global var - provide either generated or hardcoded tables Originally committed as revision 11409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use cutoff frequency to adjust bandwidth in ac3 encoderJustin Ruggles2007-12-28
| | | | Originally committed as revision 11338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use bps instead of kbps for bitrateJustin Ruggles2007-12-28
| | | | Originally committed as revision 11337 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not give advice for which bitrate to choose.Justin Ruggles2007-12-28
| | | | Originally committed as revision 11334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix typoJustin Ruggles2007-12-28
| | | | Originally committed as revision 11333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: rename common ac3 variablesJustin Ruggles2007-12-09
| | | | Originally committed as revision 11196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: rename ac3 bit allocation variablesJustin Ruggles2007-12-09
| | | | Originally committed as revision 11194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: rename ac3 tablesJustin Ruggles2007-12-09
| | | | Originally committed as revision 11193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sync message with modern ffmpeg bitrate option syntax.D Richard Felker III2007-11-27
| | | | | | | | 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
* Fix the self tests which are contained in some codecs and are using random().Panagiotis Issaris2007-07-19
| | | | Originally committed as revision 9755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move some common values to ac3.h and utilize themJustin Ruggles2007-07-15
| | | | Originally committed as revision 9679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_xx throughout libavcodecRamiro Polla2007-06-02
| | | | Originally committed as revision 9169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics. align and condense.Justin Ruggles2007-03-22
| | | | Originally committed as revision 8479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyJustin Ruggles2007-03-22
| | | | Originally committed as revision 8478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* utilize multi-stage AC-3 bit allocation. speeds up encoding by 25-30%Justin Ruggles2007-03-22
| | | | Originally committed as revision 8477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 encoded volume is too high. Revert revision 7160:Bill O'Shaughnessy2007-03-18
| | | | | | | | | | | 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
* remove redundancy in AC-3 parser by using common tables from ac3tab.hJustin Ruggles2007-03-11
| | | | Originally committed as revision 8318 to svn://svn.ffmpeg.org/ffmpeg/trunk