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 (Expand)Author
2009-09-17add CODEC_CAP_SUBFRAMES to the FLAC decoder capabilities. also add a FIXMEJustin Ruggles
2009-08-20flacdec: change variable-length array to fixed lengthMåns Rullgård
2009-06-29Rename ff_log_missing_feature() to av_log_missing_feature().Ronald S. Bultje
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-03-25cosmetics: add an @return to documentation for decode_frame_header()Justin Ruggles
2009-03-24flacdec: split frame header decoding and validation into a separateJustin Ruggles
2009-03-23flacdec: cosmetics: white spaceJustin Ruggles
2009-03-23flacdec: cosmetics: separate the pure frame header parsing code fromJustin Ruggles
2009-03-23flacdec: allow sample rate to change mid-stream, but log a warningJustin Ruggles
2009-03-23flacdec: cosmetics: indentationJustin Ruggles
2009-03-23flacdec: change frame bps validation to return an error value if bpsJustin Ruggles
2009-03-23flacdec: cosmetics: add some braces to if/else statementsJustin Ruggles
2009-03-23flacdec: skip frame when allocated data size is too smallJustin Ruggles
2009-03-2310l: don't check against current layout until after validating ch_mode.Justin Ruggles
2009-03-23flacdec: give a more accurate error message when validating channelJustin Ruggles
2009-03-22flacdec: move data size check to flac_decode_frame()Justin Ruggles
2009-03-22flacdec: comments and white space.Justin Ruggles
2009-03-22flacdec: remove unneeded local variableJustin Ruggles
2009-03-22flacdec: cosmetics: rename 3 variablesJustin Ruggles
2009-03-22flacdec: use a local variable for GetBitContext in decode_frame()Justin Ruggles
2009-03-21add a function to calculate a more accurate estimate for maximum FLACJustin Ruggles
2009-03-21flacdec: account for frame and subframe header overhead when calculatingJustin Ruggles
2009-03-21share sample rate and blocksize tables between the FLAC encoder and FLACJustin Ruggles
2009-03-21flacdec: remove unneeded variable, 'assignment'Justin Ruggles
2009-03-21flacdec: cosmetics: rename 'decorrelation' to 'ch_mode'Justin Ruggles
2009-03-21share channel mode constants between the FLAC decoder and FLAC encoderJustin Ruggles
2009-03-19share some constants between the FLAC encoder and FLAC decoderJustin Ruggles
2009-03-06flacdec: Add a shared function for parsing a FLAC metadata block header.Justin Ruggles
2009-03-05flacdec: cosmetics: Add a comment with the data of the smallest FLACJustin Ruggles
2009-03-05flacdec: There is an even smaller FLAC frame size possibility.Justin Ruggles
2009-03-05flacdec: 10l to me. I miscalculated the smallest FLAC frame. It is 16Justin Ruggles
2009-03-05flacdec: cosmetics: move 2 statements to immediately after frameJustin Ruggles
2009-03-05flacdec: Simplify frame sync by not using the bitstream reader.Justin Ruggles
2009-03-05flacdec: Split the metadata_parse() function into 2 separate functions,Justin Ruggles
2009-03-05flacdec: Add a check for small buffer size. This ensures reading asJustin Ruggles
2009-03-05flacdec: cosmetics: Use a more descriptive variable name for the numberJustin Ruggles
2009-03-05flacdec: Handle 32 bps data when checking allocated size.Justin Ruggles
2009-03-05flacdec: Check curr_bps after wasted bits are subtracted.Justin Ruggles
2009-03-04flacdec: When there is not enough data to read the next header block,Justin Ruggles
2009-03-04cosmetics: indentation after last commitJustin Ruggles
2009-03-04flacdec: Check for an inline header before calling metadata_parse().Justin Ruggles
2009-03-04flacdec: Allocate buffers right after STREAMINFO is parsed.Justin Ruggles
2009-03-04cosmetics: indentation after last commitJustin Ruggles
2009-03-04flacdec: Avoid parsing the STREAMINFO multiple times.Justin Ruggles
2009-03-03flacdec: Warn about invalid max blocksize and limit the minimum value.Justin Ruggles
2009-03-03cosmetics: remove a pointless commentJustin Ruggles
2009-03-03flacdec: Remove unused variable, min_blocksize.Justin Ruggles
2009-03-03flacdec: Return error when blocksize code of 0 is found. It is aJustin Ruggles
2009-03-03flacdec: Avoid trying to read 33 bits. This occurs when the sourceJustin Ruggles