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
2013-07-28flac: use meaningful return valuesLuca Barbato
2013-02-07flac: add channel layout masks for streams with 7 or 8 channels.Tim Walker
They were added to the latest FLAC specification: https://git.xiph.org/?p=flac-website.git;a=commit;h=65c199a2 Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-11-01flacdec: allow mid-stream channel layout changeJustin Ruggles
Although the libFLAC decoder cannot handle such a change, it is allowed by the spec and could potentially occur with live streams.
2012-07-12flac: Move flac functions shared between libraries to flac common codeDiego Biurrun
This fixes a number of flac-related build dependencies.
2012-07-04flac: make FLAC_CHMODE_* constants consecutiveMans Rullgard
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-12-07cosmetics: line wrap after last commitJustin Ruggles
Originally committed as revision 25913 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-07Add log_level_offset parameter to ff_flac_decode_frame_header(). It will be usedMichael Chinen
to optionally silence the error messages. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-07Add is_var_size and frame_or_sample_num to FLACFrameInfo and read them inMichael Chinen
ff_flac_decode_frame_header(). Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25911 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-07Check validity of the frame sync code in ff_flac_decode_frame_header().Michael Chinen
Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25910 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-07Move decode_frame_header() from flacdec.c to flac.c/h to share with theMichael Chinen
forthcoming FLAC parser. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25909 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21add a function to calculate a more accurate estimate for maximum FLACJustin Ruggles
frame size and use the function in the FLAC decoder and FLAC encoder Originally committed as revision 18092 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-24rename flac.c to flacdec.cJustin Ruggles
Originally committed as revision 16735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-23flacdec: add support for 3 additional sample rate codesJustin Ruggles
Originally committed as revision 16723 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-03fix issue 616 on roundup : decoding of short flac filesJai Menon
Originally committed as revision 15177 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-07-18Support reading large metadata.Michael Niedermayer
fixes issue187 Originally committed as revision 14281 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-18Make bitstream_* fields unsigned.Michael Niedermayer
Originally committed as revision 14280 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-18Only realloc() bitstream buffer when the needed size increased,Michael Niedermayer
this is needed to prevent loosing bitstream data with large metadata. Originally committed as revision 14279 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-18If metadata has been parsed goto end instead of trying toMichael Niedermayer
decorrelate and output somehing nonexistng. Originally committed as revision 14278 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-14Make our flac decoder decode all the data at EOF.Michael Niedermayer
Fixes issue524 Originally committed as revision 14223 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-09Use full path for #includes from another directory.Diego Biurrun
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-04Indent.Ramiro Polla
Originally committed as revision 13054 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-04Do not read out of array bounds.Ramiro Polla
Originally committed as revision 13053 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-03move call to init_get_bits inside conditionalJustin Ruggles
Originally committed as revision 13037 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-03share streaminfo parsing functionJustin Ruggles
Originally committed as revision 13036 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-03split out some decoder context params to a shared macroJustin Ruggles
Originally committed as revision 13035 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-03change function parameters for dump_headers()Justin Ruggles
Originally committed as revision 13034 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-03change function parameters for metadata_streaminfo()Justin Ruggles
Originally committed as revision 13033 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-29remove unused variable, min_framesizeJustin Ruggles
Originally committed as revision 13015 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-27Add long names to many AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 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-20Fix ;;Michael Niedermayer
Originally committed as revision 12153 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constMichael Niedermayer
Originally committed as revision 11725 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-11-04Add decoding support for variable block size FLAC files using the latest FLACJosh Coalson
specification. Patch by Josh Coalson. Originally committed as revision 10916 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-04Add support for FLAC's new RICE2 entropy coding method. Patch by Josh Coalson.Josh Coalson
Originally committed as revision 10915 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-3020% faster lpc, 6% overall flac decodingLoren Merritt
Originally committed as revision 10627 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-30replace FIR with finite differences.Loren Merritt
3x faster decode_subframe_fixed(). overall flac decoding: 10% faster if file was encoded with fixed predictors. Originally committed as revision 10626 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-26optimize decode_subframe_lpc()Loren Merritt
50%/67%/43% faster on core2/k8/p4, making flac decoding overall 24%/25%/11% faster Originally committed as revision 10586 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-09use get_bits1(..) instead get_bits(.., 1)Alex Beregszaszi
Originally committed as revision 9999 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-14add and remove some parenthesesBenoit Fouet
Originally committed as revision 9308 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12fix 8- and 24-bit FLAC decodingMichael Donaghy
Patch by Michael Donaghy %md401 A cam P ac P uk% Original thread: date: Jun 10, 2007 4:48 PM subject: [FFmpeg-devel] [PATCH] Bugfix: decoding 8- and 24-bit FLAC files Originally committed as revision 9286 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-21Fix crash when pred_order greater s->blocksize >> rice_order.Reimar Döffinger
Fixes http://sam.zoy.org/zzuf/lol-mplayer.flac Originally committed as revision 7595 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-15avcodec_decode_audio2()Michael Niedermayer
difference to avcodec_decode_audio() is that the user can pass the allocated size of the output buffer to the decoder and the decoder can check if theres enough space Originally committed as revision 7518 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-24flac: allow reading of full metadata headers from extradataAurelien Jacobs
Originally committed as revision 7161 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