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:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-28 06:54:38 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-09-28 07:11:19 +0400
commit7ed9ec033f5f8da5c06ec5f53847dbdbbf8e9dbb (patch)
treefa7298f52d823bdcb8c81243c85ea18b7b947432 /libavcodec/dwt.c
parentac7d0c79c3f6b4ca5a9d1b333107684453191811 (diff)
parent4e5b7f31f7aa7a40ef6d255db2cd65ebab7b74db (diff)
Merge remote-tracking branch 'qatar/master'
* qatar/master: dwt: Drop unused functions spatial_compose{53|97}i() nutdec: Remove unused and broken debug function stub avcodec: Drop long-deprecated imgconvert.h header Add Opus support to the Ogg muxer. Add Opus codec id and codec description. avformat: Identify anonymous AVIO typedef structs. Conflicts: libavcodec/avcodec.h libavcodec/codec_desc.c libavcodec/imgconvert.h libavcodec/version.h libavformat/oggenc.c libavformat/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dwt.c')
-rw-r--r--libavcodec/dwt.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/libavcodec/dwt.c b/libavcodec/dwt.c
index ec64857d98..d36d25d1a6 100644
--- a/libavcodec/dwt.c
+++ b/libavcodec/dwt.c
@@ -468,15 +468,6 @@ static void spatial_compose53i_dy(DWTCompose *cs, IDWTELEM *buffer,
cs->y += 2;
}
-static void av_unused spatial_compose53i(IDWTELEM *buffer, IDWTELEM *temp,
- int width, int height, int stride)
-{
- DWTCompose cs;
- spatial_compose53i_init(&cs, buffer, height, stride);
- while (cs.y <= height)
- spatial_compose53i_dy(&cs, buffer, temp, width, height, stride);
-}
-
void ff_snow_horizontal_compose97i(IDWTELEM *b, IDWTELEM *temp, int width)
{
const int w2 = (width + 1) >> 1;
@@ -651,15 +642,6 @@ static void spatial_compose97i_dy(DWTCompose *cs, IDWTELEM *buffer,
cs->y += 2;
}
-static void av_unused spatial_compose97i(IDWTELEM *buffer, IDWTELEM *temp,
- int width, int height, int stride)
-{
- DWTCompose cs;
- spatial_compose97i_init(&cs, buffer, height, stride);
- while (cs.y <= height)
- spatial_compose97i_dy(&cs, buffer, temp, width, height, stride);
-}
-
void ff_spatial_idwt_buffered_init(DWTCompose *cs, slice_buffer *sb, int width,
int height, int stride_line, int type,
int decomposition_count)