]> git.sesse.net Git - ffmpeg/history - libavcodec/g726.c
xsubdec: Convert to the new bitstream reader
[ffmpeg] / libavcodec / g726.c
2016-11-18 Alexandra Hájkovág72x: Convert to the new bitstream reader
2016-05-04 Vittorio Giovaracosmetics: Fix spelling mistakes
2015-07-27 Vittorio Giovaralavc: AV-prefix all codec capabilities
2015-07-11 Luca Barbatog726: Do not crash on user mistake
2015-02-20 Peter Meerwaldlibavcodec: Make use of av_clip functions
2013-10-03 Diego Biurruncosmetics: Group .name and .long_name together in codec...
2013-03-09 Anton Khirnovlavc: remove disabled FF_API_OLD_ENCODE_AUDIO cruft
2013-03-08 Anton Khirnovlavc decoders: work with refcounted frames.
2013-02-12 Justin Rugglesg726: decode directly to the user-provided AVFrame
2012-12-20 Diego Biurrunmiscellaneous typo fixes
2012-12-04 Anton Khirnovlavc: add a wrapper for AVCodecContext.get_buffer().
2012-11-11 Justin RugglesInclude libavutil/channel_layout.h instead of libavutil...
2012-11-01 Justin Rugglesg726dec: do not validate sample rate
2012-11-01 Justin Rugglesg726dec: set channel layout at initialization instead...
2012-09-04 Martin Storsjöavopt: Store defaults for AV_OPT_TYPE_INT in the i64...
2012-08-07 Anton KhirnovReplace all CODEC_ID_* with AV_CODEC_ID_*
2012-04-06 Martin Storsjöcosmetics: Align codec declarations
2012-03-20 Justin Rugglesg726enc: use AVCodec.encode2()
2011-12-02 Justin RugglesAdd avcodec_decode_audio4().
2011-11-02 Justin Rugglesg726dec: add flush() function to reset state when seeking
2011-11-02 Justin Rugglesg726: don't pass index to g726_reset()
2011-11-02 Justin Rugglesg726enc: add private option for setting code size directly.
2011-11-02 Justin Rugglesg726: wrap the decoder functions with a CONFIG_ADPCM_G7...
2011-11-02 Justin Rugglesg726: group the g726_encoder AVCodec with the other...
2011-11-02 Justin Rugglesg726: return AVERROR(EINVAL) instead of -1 for invalid...
2011-11-02 Justin Rugglesg726enc: use av_assert0() for sample_rate validation
2011-11-02 Justin Rugglesg726: treat sample rates other than 8kHz as unofficial.
2011-11-02 Justin Rugglesg726dec: remove the sample_rate validation
2011-11-02 Justin Rugglesg726: use bits_per_coded_sample instead of bitrate...
2011-11-02 Justin Rugglesg726: split the init function for the encoder and decoder
2011-11-02 Justin Rugglesg726: pre-calculate the number of output samples.
2011-11-02 Justin Rugglesg726: use int16_t instead of short
2011-07-29 Anton Khirnovlavc: use designated initialisers for all codecs.
2011-03-19 Mans RullgardReplace FFmpeg with Libav in licence headers
2011-01-26 Diego Elio PettenòAdd ff_ prefix to data symbols of encoders, decoders...
2010-11-12 Stefano SabatiniReplace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_...
2010-09-11 Justin RugglesSet a constant frame size for encoding G.726 audio.
2010-07-24 Reimar DöffingerUse "const" qualifier for pointers that point to input...
2010-03-30 Stefano SabatiniDefine AVMediaType enum, and use it instead of enum...
2009-09-06 Reimar DöffingerMake sample_fmts and channel_layouts compound literals...
2009-04-13 Stefano SabatiniRename bitstream.h to get_bits.h.
2009-04-12 Stefano SabatiniSplit bitstream.h, put the bitstream writer stuff in...
2009-04-07 Thilo BorgmannImplement avcodec_decode_video2(), _audio3() and _subti...
2009-01-19 Diego Biurruncosmetics: Remove pointless period after copyright...
2009-01-13 Aurelien JacobsChange semantic of CONFIG_*, HAVE_* and ARCH_*.
2008-09-03 Diego BiurrunReplace generic CONFIG_ENCODERS preprocessor conditiona...
2008-09-02 Laurent AimarPrevent a division by 0 in the g726 decoder when the...
2008-07-31 Peter RossModify all codecs to report their supported input and...
2008-06-19 Michael NiedermayerDo not shift F[I] twice, it is also clearer and smaller...
2008-06-19 Michael NiedermayerFactorize c->ap += (-c->ap) >> 4 out
2008-06-19 Michael NiedermayerGet rid of G726Tables.bits.
2008-06-19 Michael NiedermayerCopy 4 pointers to avid dozends of ptr dereferences.
2008-06-19 Michael NiedermayerDoes not need to be int16.
2008-06-19 Michael NiedermayerFactorize I >> (c->tbls->bits - 1) out.
2008-06-19 Michael Niedermayer1 abs() less
2008-06-18 Michael Niedermayersimplify
2008-06-18 Michael Niedermayeruseless ()
2008-06-18 Michael Niedermayerremove unneeded tr == 0
2008-06-18 Michael Niedermayersimplify
2008-06-18 Michael NiedermayerGet rid of the redundant AVG726Context.
2008-06-18 Michael NiedermayerRemove the truncated bitstream handling from our g726...
2008-06-17 Michael NiedermayerChange iquant tables to int16.
2008-06-17 Michael Niedermayersimplify
2008-06-17 Michael NiedermayerGet rid of useless wrapper function.
2008-06-17 Michael NiedermayerDo not inline g726_iterate() the function is big so...
2008-06-16 Michael NiedermayerReplace i2f(0) by the actual thing done, gcc is not...
2008-06-16 Michael NiedermayerRemove redundant zeroing (the context is memset(0)).
2008-06-16 Michael NiedermayerUse smaller data types for tables.
2008-06-16 Michael NiedermayerFloat11 does not need int, .o file becomes smaller...
2008-06-16 Michael Niedermayersimplify
2008-06-16 Michael NiedermayerCorrect validity checks.
2008-06-16 Michael NiedermayerPrint sane error message for channels != 1.
2008-06-16 Michael NiedermayerCheck number of bits so we do not try to use table...
2008-06-16 Michael NiedermayerSupport decoding of sample_g726.asf.
2008-06-16 Michael Niedermayerget_bits() outputs exactly as many bits as requested...
2008-06-16 Michael NiedermayerRemove dead code.
2008-06-13 Michael Niedermayer-0x8000 == 0x8000 with int16
2008-06-12 Stefano SabatiniMake AVCodec long_names definition conditional dependin...
2008-04-27 Stefano SabatiniAdd long names to many AVCodec declarations.
2008-03-21 Zuxy MengApply 'cold' attribute to init/uninit functions in...
2008-02-19 Michael NiedermayerFix ;;
2008-02-01 Michael Niedermayerconst
2008-01-07 Diego PettenòMark the tables in g726.c as constant.
2007-05-10 Diego BiurrunRemove redundant #inclusion of common.h, avcodec.h...
2007-02-25 Reimar DöffingerAdd av_ prefix to clip functions
2007-02-13 François RevolThis fixes error handling for BeOS, removing the need...
2006-11-01 Steve L'Hommereindentation, patch by From: Steve Lhomme, slhomme...
2006-10-07 Diego BiurrunChange license headers to say 'FFmpeg' instead of ...
2006-09-27 Måns Rullgårdadd some #ifdef CONFIG_ENCODERS/DECODERS
2006-01-12 Diego BiurrunUpdate licensing information: The FSF changed postal...
2005-12-22 Diego BiurrunCOSMETICS: tabs --> spaces, some prettyprinting
2005-12-17 Diego BiurrunCOSMETICS: Remove all trailing whitespace.
2005-05-08 Michael Niedermayer#defines for strict_std_compliance and split between...
2004-12-29 Michael Niedermayercommon.c -> bitstream.c (and the single non bitstream...
2004-07-22 Michael Niedermayermake comments doxygen compatible
2004-02-10 Roman Shaposhnik * gotta setup coded_frame for encoding. avcodec...
2004-02-07 Michael Niedermayeruse clip() from common.h
2004-02-07 Roman Shaposhnik * Initial implementation of the G.726 ADPCM audio...