Age | Commit message (Expand) | Author |
2012-02-13 | Drop unnecessary av_uninit attributes from some variable declarations. | Diego Biurrun |
2011-12-02 | Add avcodec_decode_audio4(). | Justin Ruggles |
2011-10-29 | flacdec: use av_get_bytes_per_sample() to get sample size | Justin Ruggles |
2011-10-20 | lavc: use avpriv_ prefix for some flac symbols used in lavf. | Anton Khirnov |
2011-09-26 | flacdec: fix buffer size checking in get_metadata_size() | Justin Ruggles |
2011-07-29 | lavc: use designated initialisers for all codecs. | Anton Khirnov |
2011-07-15 | doxygen: use Doxygen markup for authors and web links where appropriate | Diego Biurrun |
2011-03-19 | Replace FFmpeg with Libav in licence headers | Mans Rullgard |
2011-01-26 | Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf. | Diego Elio Pettenò |
2010-12-07 | Define FLAC_MIN_FRAME_SIZE and use it in the FLAC decoder. | Michael Chinen |
2010-12-07 | Simplify the FLAC decoder now that it no longer has to parse arbitrary raw FLAC | Michael Chinen |
2010-12-07 | Add log_level_offset parameter to ff_flac_decode_frame_header(). It will be used | Michael Chinen |
2010-12-07 | Move decode_frame_header() from flacdec.c to flac.c/h to share with the | Michael Chinen |
2010-11-12 | Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enum | Stefano Sabatini |
2010-10-02 | Support decoding of FLAC files without a STREAMINFO header. | Justin Ruggles |
2010-04-20 | Remove explicit filename from Doxygen @file commands. | Diego Biurrun |
2010-03-30 | Define AVMediaType enum, and use it instead of enum CodecType, which | Stefano Sabatini |
2009-11-01 | Set sample format in flac_decode_init() rather than in | Justin Ruggles |
2009-09-16 | add CODEC_CAP_SUBFRAMES to the FLAC decoder capabilities. also add a FIXME | Justin Ruggles |
2009-08-19 | flacdec: change variable-length array to fixed length | Måns Rullgård |
2009-06-29 | Rename ff_log_missing_feature() to av_log_missing_feature(). | Ronald S. Bultje |
2009-04-13 | Rename bitstream.h to get_bits.h. | Stefano Sabatini |
2009-04-07 | Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes an | Thilo Borgmann |
2009-03-24 | cosmetics: add an @return to documentation for decode_frame_header() | Justin Ruggles |
2009-03-24 | flacdec: split frame header decoding and validation into a separate | Justin Ruggles |
2009-03-22 | flacdec: cosmetics: white space | Justin Ruggles |
2009-03-22 | flacdec: cosmetics: separate the pure frame header parsing code from | Justin Ruggles |
2009-03-22 | flacdec: allow sample rate to change mid-stream, but log a warning | Justin Ruggles |
2009-03-22 | flacdec: cosmetics: indentation | Justin Ruggles |
2009-03-22 | flacdec: change frame bps validation to return an error value if bps | Justin Ruggles |
2009-03-22 | flacdec: cosmetics: add some braces to if/else statements | Justin Ruggles |
2009-03-22 | flacdec: skip frame when allocated data size is too small | Justin Ruggles |
2009-03-22 | 10l: don't check against current layout until after validating ch_mode. | Justin Ruggles |
2009-03-22 | flacdec: give a more accurate error message when validating channel | Justin Ruggles |
2009-03-22 | flacdec: move data size check to flac_decode_frame() | Justin Ruggles |
2009-03-22 | flacdec: comments and white space. | Justin Ruggles |
2009-03-22 | flacdec: remove unneeded local variable | Justin Ruggles |
2009-03-22 | flacdec: cosmetics: rename 3 variables | Justin Ruggles |
2009-03-22 | flacdec: use a local variable for GetBitContext in decode_frame() | Justin Ruggles |
2009-03-21 | add a function to calculate a more accurate estimate for maximum FLAC | Justin Ruggles |
2009-03-21 | flacdec: account for frame and subframe header overhead when calculating | Justin Ruggles |
2009-03-21 | share sample rate and blocksize tables between the FLAC encoder and FLAC | Justin Ruggles |
2009-03-21 | flacdec: remove unneeded variable, 'assignment' | Justin Ruggles |
2009-03-21 | flacdec: cosmetics: rename 'decorrelation' to 'ch_mode' | Justin Ruggles |
2009-03-21 | share channel mode constants between the FLAC decoder and FLAC encoder | Justin Ruggles |
2009-03-19 | share some constants between the FLAC encoder and FLAC decoder | Justin Ruggles |
2009-03-06 | flacdec: Add a shared function for parsing a FLAC metadata block header. | Justin Ruggles |
2009-03-05 | flacdec: cosmetics: Add a comment with the data of the smallest FLAC | Justin Ruggles |
2009-03-05 | flacdec: There is an even smaller FLAC frame size possibility. | Justin Ruggles |
2009-03-05 | flacdec: 10l to me. I miscalculated the smallest FLAC frame. It is 16 | Justin Ruggles |