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
...
*
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
*
Convert a for() loop into a while() loop for the downward part of the exponent
Justin Ruggles
2010-12-16
1
-1
/
+2
*
Redesign encode_exponents_blk_ch() so that duplicate exponent sets are no
Justin Ruggles
2010-12-16
1
-30
/
+23
*
Use optimized function DSPContext.sad[0]() instead of calc_exp_diff().
Justin Ruggles
2010-12-16
1
-16
/
+7
*
cosmetics: pretty-printing after last commit
Justin Ruggles
2010-12-16
1
-4
/
+2
*
Add a goto for init failure instead of duplicate calls to ac3_encode_close().
Justin Ruggles
2010-12-16
1
-4
/
+5
*
Use pre-allocated temp buffers in mdct512().
Justin Ruggles
2010-12-16
1
-6
/
+40
*
Write results of post-rotation complex multiply directly to output.
Justin Ruggles
2010-12-16
1
-4
/
+2
*
Use memcpy() instead of a for loop in mdct512().
Justin Ruggles
2010-12-16
1
-2
/
+1
*
Allocate all large per-channel arrays using av_malloc().
Justin Ruggles
2010-12-16
1
-14
/
+80
*
Make windowed_samples 16-byte aligned.
Justin Ruggles
2010-12-16
1
-1
/
+2
*
Allocate planar_samples using av_mallocz().
Justin Ruggles
2010-12-16
1
-3
/
+13
*
Allocate bap and bap1 buffers using av_malloc().
Justin Ruggles
2010-12-15
1
-16
/
+76
*
Remove last_samples[] and copy directly from planar_samples[].
Justin Ruggles
2010-12-15
1
-6
/
+1
*
Remove unneeded line. key_frame is already set to 1 in avcodec_alloc_frame().
Justin Ruggles
2010-12-15
1
-1
/
+0
*
cosmetics: comment clean-up and misc cosmetics
Justin Ruggles
2010-12-15
1
-41
/
+41
*
Separate most of the per-block arrays into a separate per-block struct.
Justin Ruggles
2010-12-15
1
-58
/
+80
*
Split bit allocation search into a separate function.
Justin Ruggles
2010-12-15
1
-14
/
+21
*
10l: fix typo in compute_exp_strategy()
Justin Ruggles
2010-12-14
1
-1
/
+1
*
Move large arrays to AC3EncodeContext rather than passing them around.
Justin Ruggles
2010-12-14
1
-158
/
+106
*
cosmetics: line wrap and spacing
Justin Ruggles
2010-12-14
1
-7
/
+8
*
Use a single value for SNR offset in the bit allocation search rather than
Justin Ruggles
2010-12-14
1
-27
/
+23
*
Change bit_alloc() to return the mantissa bit count.
Justin Ruggles
2010-12-14
1
-16
/
+17
*
cosmetics: alignment and line wrap after last commit
Justin Ruggles
2010-12-14
1
-14
/
+14
*
Move bit counts to AC3EncodeContext.
Justin Ruggles
2010-12-14
1
-15
/
+14
*
Split out setting of bit allocation parameters to a separate function.
Justin Ruggles
2010-12-14
1
-18
/
+32
*
Split out counting of frame bits into a separate function.
Justin Ruggles
2010-12-14
1
-39
/
+54
*
cosmetics: vertical alignment
Justin Ruggles
2010-12-14
1
-3
/
+3
*
Only calculate num_exp_groups once.
Justin Ruggles
2010-12-14
1
-5
/
+8
*
Check for bit allocation error in ac3_encode_frame().
Justin Ruggles
2010-12-14
1
-3
/
+7
[prev]
[next]