summaryrefslogtreecommitdiff
path: root/libavcodec/flacenc.c
Commit message (Expand)AuthorAgeFilesLines
...
* cosmetics: reindentJustin Ruggles2010-07-301-5/+5
* Combine and simplify output_subframe_fixed() and output_subframe_lpc().Justin Ruggles2010-07-301-19/+5
* Combine and simplify output_subframe_constant() and output_subframe_verbatim().Justin Ruggles2010-07-301-25/+11
* Pass FlacSubframe to output_subframe_* instead of channel number.Justin Ruggles2010-07-301-24/+11
* cosmetics: change FlacEncodeContext variable name from ctx to s in severalJustin Ruggles2010-07-301-36/+36
* Set coded_frame->pts in the FLAC encoderJustin Ruggles2010-07-301-0/+1
* Do not need to set coded_frame->key_frame = 1 because it is already set inJustin Ruggles2010-07-301-1/+0
* Move debug logging of compression options to a single function.Justin Ruggles2010-07-301-37/+60
* Add 2 failed memory allocation checksJustin Ruggles2010-07-301-0/+4
* cosmetics: pretty-print flacenc.cJustin Ruggles2010-07-301-325/+344
* Use "const" qualifier for pointers that point to input data ofReimar Döffinger2010-07-241-4/+4
* Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.Justin Ruggles2010-07-111-29/+74
* Add av_ prefix to bswap macrosMåns Rullgård2010-07-101-2/+2
* bswap: change ME to NE in macro namesMåns Rullgård2010-07-101-1/+1
* Fix grammar errors in documentationMåns Rullgård2010-06-301-3/+3
* flacenc: convert VLA to fixed sizeMåns Rullgård2010-06-231-1/+1
* Replace all remaining occurrences of AVERROR_NOMEM withStefano Sabatini2010-04-031-1/+1
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-301-1/+1
* Move autocorrelation function from flacenc.c to lpc.c. Also rename theJustin Ruggles2009-10-171-63/+0
* Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger2009-09-061-1/+1
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård2009-07-261-1/+1
* flacenc: write initial blocksize to STREAMINFO header instead of currentJustin Ruggles2009-04-161-2/+4
* Skip loop iterations which are no-ops due to data1[-lag..-1] being zero.Bobby Bingham2009-04-131-2/+2
* flacenc : do not #include libavutil/lls.h since lpc code is nowJai Menon2009-04-131-1/+0
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-131-1/+1
* add a function to calculate a more accurate estimate for maximum FLACJustin Ruggles2009-03-211-5/+2
* revert accidental unrelated change in last commitJustin Ruggles2009-03-211-1/+3
* share sample rate and blocksize tables between the FLAC encoder and FLACJustin Ruggles2009-03-211-24/+9
* flacenc: remove unneeded variable, 'min_encoded_framesize' and useJustin Ruggles2009-03-211-5/+3
* flacenc: remove unneeded context variable, 'ch_code'Justin Ruggles2009-03-211-3/+1
* share channel mode constants between the FLAC decoder and FLAC encoderJustin Ruggles2009-03-211-10/+4
* share some constants between the FLAC encoder and FLAC decoderJustin Ruggles2009-03-191-8/+3
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-131-1/+1
* write actual min and max frame size to FLAC header. update regression test ch...Justin Ruggles2008-09-141-1/+11
* write MD5 checksum to FLAC header. update regression tests.Justin Ruggles2008-09-141-1/+29
* write number of samples in FLAC extradata.Justin Ruggles2008-09-141-2/+13
* fix and simplify frame size check and reencoding in verbatim modeJustin Ruggles2008-08-171-12/+17
* update my email address to one which does not depend on my service providerJustin Ruggles2008-08-161-1/+1
* cosmetics: adjust line breaks and vertical alignmentJustin Ruggles2008-08-161-2/+3
* use limited range of lpc orders when quantizing coefficientsJustin Ruggles2008-08-161-1/+1
* flacenc, lpc: Move LPC code from flacenc.c to new lpc.[ch] files.Ramiro Polla2008-08-161-189/+2
* flacenc: Allow more flexible shift calculation in LPC.Ramiro Polla2008-08-161-10/+11
* Modify all codecs to report their supported input and output sample format(s).Peter Ross2008-07-311-0/+1
* bitstream: move put_sbits() from flacenc.c to bitstream.h and use itRamiro Polla2008-07-131-7/+0
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-121-1/+1
* Use full path for #includes from another directory.Diego Biurrun2008-05-091-2/+2
* Add long names to many AVCodec declarations.Stefano Sabatini2008-04-271-0/+1
* remove redundant context variableJustin Ruggles2008-03-311-12/+8
* Use 15-bit LPC precision by default. This generally gives better compressionJustin Ruggles2008-03-301-10/+2
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-211-2/+2