summaryrefslogtreecommitdiff
path: root/libavcodec/flacenc.c
Commit message (Expand)AuthorAge
* Replace all remaining occurrences of AVERROR_NOMEM withStefano Sabatini2010-04-03
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
* Move autocorrelation function from flacenc.c to lpc.c. Also rename theJustin Ruggles2009-10-17
* Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger2009-09-06
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård2009-07-26
* flacenc: write initial blocksize to STREAMINFO header instead of currentJustin Ruggles2009-04-16
* Skip loop iterations which are no-ops due to data1[-lag..-1] being zero.Bobby Bingham2009-04-13
* flacenc : do not #include libavutil/lls.h since lpc code is nowJai Menon2009-04-13
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
* add a function to calculate a more accurate estimate for maximum FLACJustin Ruggles2009-03-21
* revert accidental unrelated change in last commitJustin Ruggles2009-03-21
* share sample rate and blocksize tables between the FLAC encoder and FLACJustin Ruggles2009-03-21
* flacenc: remove unneeded variable, 'min_encoded_framesize' and useJustin Ruggles2009-03-21
* flacenc: remove unneeded context variable, 'ch_code'Justin Ruggles2009-03-21
* share channel mode constants between the FLAC decoder and FLAC encoderJustin Ruggles2009-03-21
* share some constants between the FLAC encoder and FLAC decoderJustin Ruggles2009-03-19
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
* write actual min and max frame size to FLAC header. update regression test ch...Justin Ruggles2008-09-14
* write MD5 checksum to FLAC header. update regression tests.Justin Ruggles2008-09-14
* write number of samples in FLAC extradata.Justin Ruggles2008-09-14
* fix and simplify frame size check and reencoding in verbatim modeJustin Ruggles2008-08-17
* update my email address to one which does not depend on my service providerJustin Ruggles2008-08-16
* cosmetics: adjust line breaks and vertical alignmentJustin Ruggles2008-08-16
* use limited range of lpc orders when quantizing coefficientsJustin Ruggles2008-08-16
* flacenc, lpc: Move LPC code from flacenc.c to new lpc.[ch] files.Ramiro Polla2008-08-16
* flacenc: Allow more flexible shift calculation in LPC.Ramiro Polla2008-08-16
* Modify all codecs to report their supported input and output sample format(s).Peter Ross2008-07-31
* bitstream: move put_sbits() from flacenc.c to bitstream.h and use itRamiro Polla2008-07-13
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
* Add long names to many AVCodec declarations.Stefano Sabatini2008-04-27
* remove redundant context variableJustin Ruggles2008-03-31
* Use 15-bit LPC precision by default. This generally gives better compressionJustin Ruggles2008-03-30
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
* assert() and note about odd len.Michael Niedermayer2008-02-09
* optimize apply_welch_window()Michael Niedermayer2008-02-09
* improve CRC APIAurelien Jacobs2008-01-04
* remove a branch from an inner loop.Loren Merritt2007-10-27
* div -> mulLoren Merritt2007-10-01
* simplify lpcLoren Merritt2007-09-30
* unroll finite differences to avoid swapping registers.Loren Merritt2007-09-29
* encode_residual_fixed(): replace FIR with finite differences.Loren Merritt2007-09-29
* sse2 version of compute_autocorr().Loren Merritt2007-09-29
* was computing one more autocorrelation coefficient that was actually usedLoren Merritt2007-09-29
* replace brute force find_optimal_param() with a closed-form solution.Loren Merritt2007-09-29
* gcc isn't smart enough to factor out duplicate storesLoren Merritt2007-09-29
* 2.5x faster compute_autocorr()Loren Merritt2007-09-28
* unroll encode_residual_lpc(). speedup varies between 1.2x and 1.8x depending ...Loren Merritt2007-09-27
* oops, potential overflow on really large blocksLoren Merritt2007-09-25
* optimize encode_residual_lpc()Loren Merritt2007-09-25