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
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2016-02-03 04:02:39 +0300
committerTimothy Gu <timothygu99@gmail.com>2016-02-07 20:09:13 +0300
commit58ded09bd14e149af113b8373c1c2cd7958dfe54 (patch)
treeeb39e4f9790f418fb466f0386c434cdbdd48ea4e /libavcodec/dirac_dwt.h
parent6cdde20beb9801ab83f142b56449e0a3f69b4019 (diff)
dirac_dwt: Rename init2 to init
The functions are all private.
Diffstat (limited to 'libavcodec/dirac_dwt.h')
-rw-r--r--libavcodec/dirac_dwt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/dirac_dwt.h b/libavcodec/dirac_dwt.h
index b3be596e9f..1a899b3c3d 100644
--- a/libavcodec/dirac_dwt.h
+++ b/libavcodec/dirac_dwt.h
@@ -76,9 +76,9 @@ enum dwt_type {
};
// -1 if an error occurred, e.g. the dwt_type isn't recognized
-int ff_spatial_idwt_init2(DWTContext *d, uint8_t *buffer, int width, int height,
- int stride, enum dwt_type type, int decomposition_count,
- uint8_t *temp, int bit_depth);
+int ff_spatial_idwt_init(DWTContext *d, uint8_t *buffer, int width, int height,
+ int stride, enum dwt_type type, int decomposition_count,
+ uint8_t *temp, int bit_depth);
void ff_spatial_idwt_init_x86(DWTContext *d, enum dwt_type type);
void ff_spatial_idwt_slice2(DWTContext *d, int y);