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 (Collapse)Author
2013-05-16Remove commented-out debug #define cruftDiego Biurrun
2013-05-04avcodec: Add av_cold attributes to init functions missing themDiego Biurrun
2013-03-09lavc: remove disabled FF_API_OLD_ENCODE_AUDIO cruftAnton Khirnov
2013-02-09dsputil: Move LOCAL_ALIGNED macros to libavutilDiego Biurrun
2012-12-21miscellaneous typo fixesDiego Biurrun
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-06-08Add a float DSP framework to libavutilJustin Ruggles
Move vector_fmul() from DSPContext to AVFloatDSPContext.
2012-04-06avutil: Add av_get_default_channel_layout()Justin Ruggles
Also, use the new function in the AC-3 encoder.
2012-03-21ac3enc: update to AVCodec.encode2()Justin Ruggles
Update FATE references due to encoder delay.
2012-02-29(e)ac3enc: select a default bit rate based on the channel layoutJustin Ruggles
2012-02-29ac3enc: choose the closest bit rate to the one requested instead of failingJustin Ruggles
2012-02-16dsputil: Add ff_ prefix to the dsputil*_init* functionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-02-13Drop unnecessary av_uninit attributes from some variable declarations.Diego Biurrun
Recent versions of gcc (4.4+) no longer give false positive warnings.
2011-11-25Make channel layout masks unsignedMans Rullgard
It makes more sense for a bit mask to use an unsigned type. The change should be source and binary compatible on all supported systems, hence micro version bump. Fixes a few invalid shifts. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-11-03ac3enc: doxygen update.Justin Ruggles
Add some parameters to existing function documentation. Remove some unneeded documentation. Convert some static function documentation to non-doxygen style.
2011-09-05ac3enc: Add channel coupling support for the fixed-point AC-3 encoder.Justin Ruggles
Update FATE references accordingly.
2011-08-11ac3enc: add macros for option names to make them more understandable.Justin Ruggles
2011-08-11ac3enc: fix 'channel_coupling' option to actually allow 'auto'.Justin Ruggles
Use 'auto' as the default value.
2011-08-10ac3enc: allow new coupling coordinates to be sent independently for eachJustin Ruggles
channel.
2011-08-10ac3enc: separate exponent bit counting from exponent grouping.Justin Ruggles
Move bit counting to the bit allocation function. Move exponent grouping to after bit allocation. This will allow for adjustment of bandwidth parameters during bit allocation without having to do exponent grouping multiple times.
2011-07-27cosmetics: reindentJustin Ruggles
2011-07-27eac3enc: support writing of basic mixing and info metadataJustin Ruggles
2011-07-21eac3enc: use different numbers of blocks per frame to allow higher bitratesJustin Ruggles
2011-07-19eac3enc: use frame exponent strategy when applicable.Justin Ruggles
This checks if the set of selected exponent strategies for all blocks in a channel are in the frame exponent strategy table, and if so, writes the table index instead of each strategy. This saves up to 7 bits per channel per frame, so the overall effect on quality is small.
2011-07-14ac3enc: merge AC3MDCTContext with AC3EncodeContext.Justin Ruggles
Since both the fixed-point and floating-point encoders use the FFTContext, this no longer needs to be in a separate context. Also, when a short-transform context is added, the same MDCT window will be used.
2011-07-14ac3enc: prefer passing AC3EncodeContext rather than AVCodecContextJustin Ruggles
2011-07-14ac3enc: fix memleakJustin Ruggles
2011-06-28cosmetics: remove outdated comment that is no longer trueJustin Ruggles
2011-06-27ac3enc: move ff_ac3_encode_frame() to ac3enc_template.cJustin Ruggles
This avoids using function pointers for quite a few small functions, most of which just call DSP functions.
2011-06-27ac3enc: Remove bit allocation fallbacks.Justin Ruggles
They introduce too much complexity for very little benefit. The result is that encoding will be more likely to fail at extremely low bitrates where quality would be awful anyway.
2011-06-22ac3enc: remove unneeded local variable in asym_quant()Justin Ruggles
2011-06-22ac3enc: remove a branch in asym_quant() by doing 2 shiftsJustin Ruggles
2011-06-22ac3enc: avoid masking output in asym_quant() by using signed values forJustin Ruggles
quantized mantissas.
2011-06-14ac3enc: fix allocation of floating point samples.Justin Ruggles
sizeof(SampleType) is different for fixed and float encoders.
2011-06-14ac3enc: remove empty ac3_float function that is never calledJustin Ruggles
2011-06-14ac3enc: split templated float vs. fixed functions into a separate file.Justin Ruggles
Function pointers are used for templated functions instead of needlessly duplicating many functions.
2011-06-14ac3enc: dynamically allocate AC3EncodeContext fields windowed_samples and mdctJustin Ruggles
This will allow the same struct to be used for both the fixed and float ac3 encoders.
2011-06-14ac3enc: use function pointer to choose between AC-3 and E-AC-3 header outputJustin Ruggles
functions.
2011-06-08ac3enc: Fix linking of AC-3 encoder without the E-AC-3 encoder.Diego Biurrun
The AC-3 encoder unconditionally references some symbols from the E-AC-3 encoder; make those references conditional to fix linking.
2011-06-07Move E-AC-3 encoder functions to a separate eac3enc.c file.Justin Ruggles
2011-06-07ac3enc: remove convenience macro, #define DEBUGJustin Ruggles
2011-06-07ac3enc: remove unused #defineJustin Ruggles
2011-06-05ac3enc: extract all exponents for the frame at onceJustin Ruggles
2011-05-29ac3enc: fix LOCAL_ALIGNED usage in count_mantissa_bits()Mans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-28ac3enc: modify mantissa bit counting to keep bap counts for all values of bapJustin Ruggles
instead of just 0 to 4. This does all the actual bit counting as a final step.
2011-05-28ac3enc: split mantissa bit counting into a separate function.Justin Ruggles
No speed difference. This is to allow for more flexible bit counting.
2011-05-28ac3enc: store per-block/channel bap pointers by reference block in a 2D arrayJustin Ruggles
rather than in the AC3Block struct. This will make it easier to access the bap values without having to chase the reference block pointers each time.
2011-05-28ac3enc: use LOCAL_ALIGNED macroMans Rullgard
Aligned local variables must use the LOCAL_ALIGNED macro to ensure correct alignment on all systems. The unusual size argument to memset is required since the implementation of LOCAL_ALIGNED may use a pointer to an array. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-28cosmetics: indentation and alignment after previous commitJustin Ruggles