diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2014-01-07 21:14:55 +1100 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2014-01-07 21:27:00 +1100 |
commit | 6cd8b42438e6959ae60ae3bea84b27d2553f50c9 (patch) | |
tree | b1b3773b2e5b7cdd57ff23f2c4644bb0613ed3bd /src/libFLAC/ia32/stream_encoder_asm.nasm | |
parent | b84f07248e355c804cb2af9eb0c7dd38bdd6935f (diff) | |
download | flac-6cd8b42438e6959ae60ae3bea84b27d2553f50c9.tar.gz |
Add FLAC__ prefix to precompute_partition_info_sums....
Most non-static functions have FLAC__ prefix, but they were missing
from the precompute_partition_info_sums_* functions.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
Diffstat (limited to 'src/libFLAC/ia32/stream_encoder_asm.nasm')
-rw-r--r-- | src/libFLAC/ia32/stream_encoder_asm.nasm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libFLAC/ia32/stream_encoder_asm.nasm b/src/libFLAC/ia32/stream_encoder_asm.nasm index dc952424..4cbcc44a 100644 --- a/src/libFLAC/ia32/stream_encoder_asm.nasm +++ b/src/libFLAC/ia32/stream_encoder_asm.nasm @@ -35,14 +35,13 @@ data_section -cglobal precompute_partition_info_sums_32bit_asm_ia32_ +cglobal FLAC__precompute_partition_info_sums_32bit_asm_ia32_ code_section ; ********************************************************************** ; -; void FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter) ; void precompute_partition_info_sums_32bit_( ; const FLAC__int32 residual[], ; FLAC__uint64 abs_residual_partition_sums[], @@ -53,7 +52,7 @@ cglobal precompute_partition_info_sums_32bit_asm_ia32_ ; ) ; ALIGN 16 -cident precompute_partition_info_sums_32bit_asm_ia32_ +cident FLAC__precompute_partition_info_sums_32bit_asm_ia32_ ;; peppered throughout the code at major checkpoints are keys like this as to where things are at that point in time ;; [esp + 4] const FLAC__int32 residual[] |