Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2011-10-13mlpdec: return meaningful error codes instead of -1Justin Ruggles
2011-10-13mlpdec: remove unnecessary wrapper functionJustin Ruggles
2011-10-13mlpdec: only calculate output size onceJustin Ruggles
2011-10-13mlpdec: validate that the reported channel count matches the actual outputJustin Ruggles
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
2011-03-14Update the url to the site website and change ffmpeg-devel to libav-develJohan Andersson
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
2010-11-12Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini
2010-06-30Fix grammar errors in documentationMåns Rullgård
2010-05-11mlpdec: Comment channel_params field in struct SubStream.Nick Brereton
2010-05-11mlpdec: Allocate channel decoding parameters for each substream. Some fileNick Brereton
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
2010-01-27Reduce log level of "Extracting .. channel downmix" to AV_LOG_DEBUG, theReimar Döffinger
2010-01-24Fix crash in MLP decoder due to integer overflow.Reimar Döffinger
2009-12-29Remove pointless CONFIG_MLP_DECODER preprocessor check.Diego Biurrun
2009-10-16mlp: Indent.Ramiro Polla
2009-10-16mlp: Only initialize VLC tables once. This caused a crash when multipleRamiro Polla
2009-05-15mlp: Simplify adressing of state and coeffs arrays for both filters by makingRamiro Polla
2009-05-06mlpdec: Fix possible writing out of array bounds introduced by beingRamiro Polla
2009-05-06mlpdec: Split sync word error and MLP sync word check.Ramiro Polla
2009-05-06mlpdec: Fix indentation that got mangled from copy&paste.Ramiro Polla
2009-04-30mlpdec: Move MLP's filter_channel() to dsputils.Ramiro Polla
2009-04-27mlpdec: Simplify filtering code by using only one counter variable.Ramiro Polla
2009-04-22mlpdec: Don't overallocate buffers.Ramiro Polla
2009-04-22mlpdec: Validate num_primitive_matrices.Ramiro Polla
2009-04-22mlpdec: Validate max_channel and max_matrix_channel.Ramiro Polla
2009-04-22mlpdec: Restart header sync must be 0x31ea for MLP.Ramiro Polla
2009-04-19mlpdec: Read context variable to local variable to make code cleaner.Ramiro Polla
2009-04-18mlpdec: {}- and whitespace-related cosmetics.Ramiro Polla
2009-04-18mlpdec: Use some context arrays with local variables in rematrix_channels().Ramiro Polla
2009-04-18truehd: Simplify rematrix_channels() as per Michael's original review.Ramiro Polla
2009-04-18mlpdec: Make read_matrix_params() take unsigned int substr for consistency.Ramiro Polla
2009-04-18mlpdec: Check for {matrix,filter}_changed as soon as they are incremented.Ramiro Polla
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
2009-04-06mlpdec: Filters and matrices may change only once per substream per access unit.Ramiro Polla
2009-04-06mlpdec: There must be no extraword for MLP.Ramiro Polla
2009-04-06mlpdec: Validate non-restart bit from the substream header.Ramiro Polla
2009-04-06mlpdec: matrix_out_ch must not be greater than max_matrix_channel, and not ma...Ramiro Polla
2009-03-30mlpdec: Simplify check for substream_parity_present.Ramiro Polla
2009-03-30mlpdec: Simplify no restart header seen error.Ramiro Polla
2009-03-30mlpdec: Simplify substream length mismatch error.Ramiro Polla
2009-03-30mlpdec: Prettify substream parity check.Ramiro Polla
2009-03-30mlpdec: Cleaner and better termination word check.Ramiro Polla
2009-03-30mlpdec: More validation for read_channel_params()Ramiro Polla
2009-03-30mlpdec: whitespace cosmetics.Ramiro Polla
2009-03-30mlpdec: Simplify &foo[0] to foo and use index (which has just been initializedRamiro Polla
2009-03-30mlpdec: Split filter_state_buffer into [fi]irbuf and fp to [fi]ir.Ramiro Polla