index
:
delta/ffmpeg.git
ffmpeg
h264_assembly
master
merge2
oldabi
release/0.10
release/0.11
release/0.5
release/0.6
release/0.7
release/0.8
release/0.9
release/1.0
release/1.1
release/1.2
release/2.0
release/2.1
release/2.2
release/2.3
release/2.4
release/2.5
release/2.6
release/2.7
release/2.8
release/3.0
release/3.1
release/3.2
release/3.3
release/3.4
release/4.0
release/4.1
release/4.2
release/4.3
release/4.4
release/5.0
release/5.1
release/6.0
git.ffmpeg.org: ffmpeg.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
libavcodec
/
ac3enc.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add x86-optimized versions of exponent_min().
Justin Ruggles
2011-02-10
1
-27
/
+6
*
ac3enc: Change EXP_DIFF_THRESHOLD to 500.
Justin Ruggles
2011-02-02
1
-1
/
+1
*
Add ff_ prefix to ac3_common_init().
Justin Ruggles
2011-01-26
1
-1
/
+1
*
ac3enc: use dsputil functions in apply_window()
Justin Ruggles
2011-01-22
1
-2
/
+2
*
cosmetics: spacing, line wrap, and remove unneeded braces
Justin Ruggles
2011-01-15
1
-4
/
+3
*
Process all EXP_REUSE blocks at once in exponent_min().
Justin Ruggles
2011-01-15
1
-12
/
+25
*
Take advantage of per-channel exponent and exponent strategy layout to
Justin Ruggles
2011-01-15
1
-14
/
+19
*
Simplify compute_exp_strategy() by passing a pointer to all exponents and
Justin Ruggles
2011-01-15
1
-13
/
+5
*
Use a local variable in the inner loop of group_exponents() to simplify the
Justin Ruggles
2011-01-15
1
-3
/
+4
*
cosmetics: remove unneeded braces
Justin Ruggles
2011-01-15
1
-2
/
+1
*
cosmetics: rename block_num to blk for variable name consistency
Justin Ruggles
2011-01-15
1
-9
/
+9
*
Move exp_strategy from AC3Block to AC3EncodeContext in order to arrange by
Justin Ruggles
2011-01-15
1
-26
/
+25
*
Rearrange exponent buffer to group all blocks for a single channel together.
Justin Ruggles
2011-01-15
1
-1
/
+4
*
Add stereo rematrixing support to the AC-3 encoders.
Justin Ruggles
2011-01-08
1
-12
/
+135
*
Convert floating-point MDCT coefficients to 24-bit fixed-point all at once
Justin Ruggles
2011-01-05
1
-5
/
+33
*
Use local variables outside the inner loop in extract_exponents() to reduce
Justin Ruggles
2011-01-05
1
-4
/
+7
*
cosmetics: fix typo in previous commit
Justin Ruggles
2011-01-04
1
-1
/
+1
*
Change the AC-3 encoder to use floating-point.
Justin Ruggles
2011-01-04
1
-1
/
+10
*
Move fixed-point parts of the AC-3 encoder to separate files.
Justin Ruggles
2011-01-03
1
-420
/
+16
*
Skip the bit allocation search if previous and current SNR offsets are the
Justin Ruggles
2010-12-31
1
-0
/
+7
*
10l: Fix mistake in r26044. Check increment bounds using actual increment
Justin Ruggles
2010-12-31
1
-1
/
+1
*
Change planar_samples from int16_t to SampleType.
Justin Ruggles
2010-12-31
1
-1
/
+1
*
Add typedefs and a macro that will allow sharing of functions between the
Justin Ruggles
2010-12-30
1
-10
/
+15
*
Move the list of supported channel layouts to a separate table.
Justin Ruggles
2010-12-30
1
-20
/
+27
*
Add a window field to AC3MDCTContext and use it as an input to apply_window()
Justin Ruggles
2010-12-30
1
-1
/
+4
*
cosmetics: alignment, line wrap, and spacing
Justin Ruggles
2010-12-30
1
-29
/
+19
*
Remove avctx from AC3MDCTContext and just pass it to mdct_init() instead.
Justin Ruggles
2010-12-30
1
-12
/
+10
*
Make exponent_group_tab[] static.
Justin Ruggles
2010-12-30
1
-1
/
+1
*
Change the default dB-per-bit code from 2 to 3.
Justin Ruggles
2010-12-29
1
-1
/
+1
*
cosmetics: line wrap and vertical alignment
Justin Ruggles
2010-12-23
1
-2
/
+1
*
Make sure that the 2nd CRC value does not match the AC-3 sync word.
Justin Ruggles
2010-12-23
1
-4
/
+10
*
Store CRC context locally to reduce number of calls to av_crc_get_table().
Justin Ruggles
2010-12-23
1
-2
/
+3
*
Remove unneeded local variable, frame_size, in output_frame_end().
Justin Ruggles
2010-12-23
1
-5
/
+4
*
cosmetics: fix comment after change in clipping range
Justin Ruggles
2010-12-22
1
-1
/
+1
*
Change FIX15() back to clipping to -32767..32767.
Justin Ruggles
2010-12-21
1
-1
/
+1
*
Add emms_c() after exp_diff calculations.
Justin Ruggles
2010-12-21
1
-0
/
+1
*
Pre-calculate crc_inv at codec init.
Justin Ruggles
2010-12-21
1
-3
/
+11
*
Add some simple fallbacks for normal bit allocation failure.
Justin Ruggles
2010-12-17
1
-1
/
+89
*
Check user-specified cutoff frequency in validate_options().
Justin Ruggles
2010-12-17
1
-5
/
+14
*
10l: fix encoding for LFE channel
Justin Ruggles
2010-12-17
1
-0
/
+2
*
Add support for fixed-point MDCT sizes other than 512.
Justin Ruggles
2010-12-17
1
-36
/
+64
*
cosmetics: reindent after last commit
Justin Ruggles
2010-12-17
1
-5
/
+5
*
Simplify bit allocation search by using a loop for the SNR offset increment.
Justin Ruggles
2010-12-17
1
-17
/
+4
*
Do not calculate psd and masking curve if exponents are being reused.
Justin Ruggles
2010-12-17
1
-5
/
+4
*
cosmetics: reindent after last commit
Justin Ruggles
2010-12-16
1
-4
/
+4
*
Copy bap from previous block when exponent strategy is EXP_REUSE.
Justin Ruggles
2010-12-16
1
-0
/
+8
*
Count grouped mantissas for each block all at once at the end of bit
Justin Ruggles
2010-12-16
1
-41
/
+34
*
Count bits for fixed parameters at start of encoding rather than in every
Justin Ruggles
2010-12-16
1
-34
/
+66
*
Use a LUT for number of exponent groups. This avoids recalculating it for
Justin Ruggles
2010-12-16
1
-14
/
+34
*
Speed up group minimum and group output calculations for EXP_D25 and EXP_D45
Justin Ruggles
2010-12-16
1
-19
/
+37
[next]