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
2011-05-28ac3enc: add support for E-AC-3 encoding.Justin Ruggles
2011-05-28ac3enc: Move AC-3 AVOptions array to a separate file to make it easier toJustin Ruggles
2011-05-26ac3enc: initialize all coefficients to zero.Justin Ruggles
2011-05-24ac3enc: add channel coupling supportJustin Ruggles
2011-05-12ac3enc: put the counting of stereo rematrixing bits in the same place toJustin Ruggles
2011-05-12ac3enc: clean up count_frame_bits() and count_frame_bits_fixed()Justin Ruggles
2011-05-10AVOptions: make default_val a union, as proposed in AVOption2.Anton Khirnov
2011-05-04Replace strncpy() with av_strlcpy().Alex Converse
2011-05-01ac3enc: do not store a bandwidth code for each channel.Justin Ruggles
2011-05-01ac3enc: remove bandwidth reduction as fallback for bit allocation failure.Justin Ruggles
2011-05-01ac3enc: merge compute_exp_strategy_ch() into compute_exp_strategy()Justin Ruggles
2011-05-01ac3enc: return error if frame+exponent bits are too large instead of usingJustin Ruggles
2011-05-01ac3enc: differentiate between current block and reference block in bit_alloc()Justin Ruggles
2011-05-01ac3enc: simplify exponent_init() by calculating exponent_group_tab[] basedJustin Ruggles
2011-05-01ac3enc: simplify stereo rematrixing decision optionsJustin Ruggles
2011-04-27ac3enc: remove check for mismatching channels and channel_layoutJustin Ruggles
2011-04-26Add AVX FFT implementation.Vitor Sessak
2011-04-04ac3enc: move extract_exponents inner loop to ac3dspMans Rullgard
2011-04-04ac3enc: select bandwidth based on bit rate, sample rate, and number ofJustin Ruggles
2011-04-03ac3enc: use generic fixed-point mdctMans Rullgard
2011-03-31ac3enc: simplify sym_quant()Mans Rullgard
2011-03-30ac3enc: move compute_mantissa_size() to ac3dspMans Rullgard
2011-03-30ac3enc: move mant*_cnt and qmant*_ptr out of AC3EncodeContextMans Rullgard
2011-03-29ac3: move ff_ac3_bit_alloc_calc_bap to ac3dspMans Rullgard
2011-03-28ac3enc: avoid memcpy() of exponents and baps in EXP_REUSE case by usingJustin Ruggles
2011-03-27ac3enc: Add codec-specific options for writing AC-3 metadata.Justin Ruggles
2011-03-25Get audio_service_type for AC-3 based on bitstream mode in the AC-3 parserJustin Ruggles
2011-03-23Add apply_window_int16() to DSPContext with x86-optimized versions and use itJustin Ruggles
2011-03-22ac3enc: make sym_quant() branch-freeJustin Ruggles
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
2011-03-17ac3enc: add float_to_fixed24() with x86-optimized versions to AC3DSPContextJustin Ruggles
2011-03-14ac3enc: do not right-shift fixed-point coefficients in the final MDCT stage.Justin
2011-03-07ac3enc: add some assertionsJustin Ruggles
2011-03-07ac3enc: use av_assert2() instead of assert() to make debugging easier.Justin Ruggles
2011-03-05ac3enc: add num_rematrixing_bands to AC3EncodeContext and use it instead of t...Justin Ruggles
2011-02-17ac3enc: fix bug in stereo rematrixing decision.Justin Ruggles
2011-02-16ac3enc: change default floor code to 7.Justin Ruggles
2011-02-15Merge libavcore into libavutilReinhard Tartler
2011-02-10Add x86-optimized versions of exponent_min().Justin Ruggles
2011-02-02ac3enc: Change EXP_DIFF_THRESHOLD to 500.Justin Ruggles
2011-01-26Add ff_ prefix to ac3_common_init().Justin Ruggles
2011-01-22ac3enc: use dsputil functions in apply_window()Justin Ruggles
2011-01-15cosmetics: spacing, line wrap, and remove unneeded bracesJustin Ruggles
2011-01-15Process all EXP_REUSE blocks at once in exponent_min().Justin Ruggles
2011-01-15Take advantage of per-channel exponent and exponent strategy layout toJustin Ruggles
2011-01-15Simplify compute_exp_strategy() by passing a pointer to all exponents andJustin Ruggles
2011-01-15Use a local variable in the inner loop of group_exponents() to simplify theJustin Ruggles
2011-01-15cosmetics: remove unneeded bracesJustin Ruggles
2011-01-15cosmetics: rename block_num to blk for variable name consistencyJustin Ruggles
2011-01-15Move exp_strategy from AC3Block to AC3EncodeContext in order to arrange byJustin Ruggles