Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
6908ded2
Commit
6908ded2
authored
12 years ago
by
Michael Niedermayer
Browse files
Options
Downloads
Patches
Plain Diff
swr: fix the noise sample type for noise shaping
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
3ef06f34
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libswresample/dither.c
+10
-9
10 additions, 9 deletions
libswresample/dither.c
libswresample/swresample.c
+1
-1
1 addition, 1 deletion
libswresample/swresample.c
libswresample/swresample_internal.h
+1
-1
1 addition, 1 deletion
libswresample/swresample_internal.h
with
12 additions
and
11 deletions
libswresample/dither.c
+
10
−
9
View file @
6908ded2
...
@@ -23,15 +23,12 @@
...
@@ -23,15 +23,12 @@
#include
"noise_shaping_data.c"
#include
"noise_shaping_data.c"
void
swri_get_dither
(
SwrContext
*
s
,
void
*
dst
,
int
len
,
unsigned
seed
,
enum
AVSampleFormat
out_fmt
,
enum
AVSampleFormat
in
_fmt
)
{
void
swri_get_dither
(
SwrContext
*
s
,
void
*
dst
,
int
len
,
unsigned
seed
,
enum
AVSampleFormat
noise
_fmt
)
{
double
scale
=
s
->
dither
.
ns_scale
;
double
scale
=
s
->
dither
.
ns_scale
;
#define TMP_EXTRA 2
#define TMP_EXTRA 2
double
*
tmp
=
av_malloc
((
len
+
TMP_EXTRA
)
*
sizeof
(
double
));
double
*
tmp
=
av_malloc
((
len
+
TMP_EXTRA
)
*
sizeof
(
double
));
int
i
;
int
i
;
out_fmt
=
av_get_packed_sample_fmt
(
out_fmt
);
in_fmt
=
av_get_packed_sample_fmt
(
in_fmt
);
for
(
i
=
0
;
i
<
len
+
TMP_EXTRA
;
i
++
){
for
(
i
=
0
;
i
<
len
+
TMP_EXTRA
;
i
++
){
double
v
;
double
v
;
seed
=
seed
*
1664525
+
1013904223
;
seed
=
seed
*
1664525
+
1013904223
;
...
@@ -63,11 +60,11 @@ void swri_get_dither(SwrContext *s, void *dst, int len, unsigned seed, enum AVSa
...
@@ -63,11 +60,11 @@ void swri_get_dither(SwrContext *s, void *dst, int len, unsigned seed, enum AVSa
v
*=
scale
;
v
*=
scale
;
switch
(
i
n_fmt
){
switch
(
n
oise
_fmt
){
case
AV_SAMPLE_FMT_S16
:
((
int16_t
*
)
dst
)[
i
]
=
v
;
break
;
case
AV_SAMPLE_FMT_S16
P
:
((
int16_t
*
)
dst
)[
i
]
=
v
;
break
;
case
AV_SAMPLE_FMT_S32
:
((
int32_t
*
)
dst
)[
i
]
=
v
;
break
;
case
AV_SAMPLE_FMT_S32
P
:
((
int32_t
*
)
dst
)[
i
]
=
v
;
break
;
case
AV_SAMPLE_FMT_FLT
:
((
float
*
)
dst
)[
i
]
=
v
;
break
;
case
AV_SAMPLE_FMT_FLT
P
:
((
float
*
)
dst
)[
i
]
=
v
;
break
;
case
AV_SAMPLE_FMT_DBL
:
((
double
*
)
dst
)[
i
]
=
v
;
break
;
case
AV_SAMPLE_FMT_DBL
P
:
((
double
*
)
dst
)[
i
]
=
v
;
break
;
default:
av_assert0
(
0
);
default:
av_assert0
(
0
);
}
}
}
}
...
@@ -117,6 +114,10 @@ int swri_dither_init(SwrContext *s, enum AVSampleFormat out_fmt, enum AVSampleFo
...
@@ -117,6 +114,10 @@ int swri_dither_init(SwrContext *s, enum AVSampleFormat out_fmt, enum AVSampleFo
}
}
s
->
dither
.
noise
=
s
->
preout
;
s
->
dither
.
noise
=
s
->
preout
;
if
(
s
->
dither
.
method
>
SWR_DITHER_NS
)
{
s
->
dither
.
noise
.
bps
=
4
;
s
->
dither
.
noise
.
fmt
=
AV_SAMPLE_FMT_FLTP
;
}
return
0
;
return
0
;
}
}
...
...
This diff is collapsed.
Click to expand it.
libswresample/swresample.c
+
1
−
1
View file @
6908ded2
...
@@ -654,7 +654,7 @@ static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_co
...
@@ -654,7 +654,7 @@ static int swr_convert_internal(struct SwrContext *s, AudioData *out, int out_co
return
ret
;
return
ret
;
if
(
ret
)
if
(
ret
)
for
(
ch
=
0
;
ch
<
s
->
dither
.
noise
.
ch_count
;
ch
++
)
for
(
ch
=
0
;
ch
<
s
->
dither
.
noise
.
ch_count
;
ch
++
)
swri_get_dither
(
s
,
s
->
dither
.
noise
.
ch
[
ch
],
s
->
dither
.
noise
.
count
,
12345678913579
<<
ch
,
s
->
out_sample_fmt
,
s
->
int_sample_
fmt
);
swri_get_dither
(
s
,
s
->
dither
.
noise
.
ch
[
ch
],
s
->
dither
.
noise
.
count
,
12345678913579
<<
ch
,
s
->
dither
.
noise
.
fmt
);
av_assert0
(
s
->
dither
.
noise
.
ch_count
==
preout
->
ch_count
);
av_assert0
(
s
->
dither
.
noise
.
ch_count
==
preout
->
ch_count
);
if
(
s
->
dither
.
dither_pos
+
out_count
>
s
->
dither
.
noise
.
count
)
if
(
s
->
dither
.
dither_pos
+
out_count
>
s
->
dither
.
noise
.
count
)
...
...
This diff is collapsed.
Click to expand it.
libswresample/swresample_internal.h
+
1
−
1
View file @
6908ded2
...
@@ -176,7 +176,7 @@ void swri_rematrix_free(SwrContext *s);
...
@@ -176,7 +176,7 @@ void swri_rematrix_free(SwrContext *s);
int
swri_rematrix
(
SwrContext
*
s
,
AudioData
*
out
,
AudioData
*
in
,
int
len
,
int
mustcopy
);
int
swri_rematrix
(
SwrContext
*
s
,
AudioData
*
out
,
AudioData
*
in
,
int
len
,
int
mustcopy
);
void
swri_rematrix_init_x86
(
struct
SwrContext
*
s
);
void
swri_rematrix_init_x86
(
struct
SwrContext
*
s
);
void
swri_get_dither
(
SwrContext
*
s
,
void
*
dst
,
int
len
,
unsigned
seed
,
enum
AVSampleFormat
out_fmt
,
enum
AVSampleFormat
in
_fmt
);
void
swri_get_dither
(
SwrContext
*
s
,
void
*
dst
,
int
len
,
unsigned
seed
,
enum
AVSampleFormat
noise
_fmt
);
int
swri_dither_init
(
SwrContext
*
s
,
enum
AVSampleFormat
out_fmt
,
enum
AVSampleFormat
in_fmt
);
int
swri_dither_init
(
SwrContext
*
s
,
enum
AVSampleFormat
out_fmt
,
enum
AVSampleFormat
in_fmt
);
void
swri_audio_convert_init_arm
(
struct
AudioConvert
*
ac
,
void
swri_audio_convert_init_arm
(
struct
AudioConvert
*
ac
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment