Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f88f705a
Commit
f88f705a
authored
May 19, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swr: add swr_drop_output()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
7a59964b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
1 deletion
+38
-1
swresample.c
libswresample/swresample.c
+31
-0
swresample.h
libswresample/swresample.h
+6
-1
swresample_internal.h
libswresample/swresample_internal.h
+1
-0
No files found.
libswresample/swresample.c
View file @
f88f705a
...
...
@@ -596,6 +596,27 @@ int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_coun
AudioData
*
in
=
&
s
->
in
;
AudioData
*
out
=
&
s
->
out
;
if
(
s
->
drop_output
>
0
){
int
ret
;
AudioData
tmp
=
s
->
out
;
uint8_t
*
tmp_arg
[
SWR_CH_MAX
];
tmp
.
count
=
0
;
tmp
.
data
=
NULL
;
if
((
ret
=
realloc_audio
(
&
tmp
,
s
->
drop_output
))
<
0
)
return
ret
;
reversefill_audiodata
(
&
tmp
,
tmp_arg
);
s
->
drop_output
*=
-
1
;
//FIXME find a less hackish solution
ret
=
swr_convert
(
s
,
tmp_arg
,
-
s
->
drop_output
,
in_arg
,
in_count
);
//FIXME optimize but this is as good as never called so maybe it doesnt matter
s
->
drop_output
*=
-
1
;
if
(
ret
>
0
)
s
->
drop_output
-=
ret
;
av_freep
(
&
tmp
.
data
);
if
(
s
->
drop_output
||
!
out_arg
)
return
0
;
}
if
(
!
in_arg
){
if
(
s
->
in_buffer_count
){
if
(
s
->
resample
&&
!
s
->
flushed
)
{
...
...
@@ -676,6 +697,16 @@ int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_coun
}
}
int
swr_drop_output
(
struct
SwrContext
*
s
,
int
count
){
s
->
drop_output
+=
count
;
if
(
s
->
drop_output
<=
0
)
return
0
;
av_log
(
s
,
AV_LOG_VERBOSE
,
"discarding %d audio samples
\n
"
,
count
);
return
swr_convert
(
s
,
NULL
,
s
->
drop_output
,
NULL
,
0
);
}
int
swr_inject_silence
(
struct
SwrContext
*
s
,
int
count
){
int
ret
,
i
;
AudioData
silence
=
s
->
out
;
...
...
libswresample/swresample.h
View file @
f88f705a
...
...
@@ -30,7 +30,7 @@
#include "libavutil/samplefmt.h"
#define LIBSWRESAMPLE_VERSION_MAJOR 0
#define LIBSWRESAMPLE_VERSION_MINOR 1
3
#define LIBSWRESAMPLE_VERSION_MINOR 1
4
#define LIBSWRESAMPLE_VERSION_MICRO 100
#define LIBSWRESAMPLE_VERSION_INT AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \
...
...
@@ -158,6 +158,11 @@ int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map);
*/
int
swr_set_matrix
(
struct
SwrContext
*
s
,
const
double
*
matrix
,
int
stride
);
/**
* Drops the specified number of output samples.
*/
int
swr_drop_output
(
struct
SwrContext
*
s
,
int
count
);
/**
* Injects the specified number of silence samples.
*/
...
...
libswresample/swresample_internal.h
View file @
f88f705a
...
...
@@ -77,6 +77,7 @@ struct SwrContext {
int
in_buffer_count
;
///< cached buffer length
int
resample_in_constraint
;
///< 1 if the input end was reach before the output end, 0 otherwise
int
flushed
;
///< 1 if data is to be flushed and no further input is expected
int
drop_output
;
///< number of output samples to drop
struct
AudioConvert
*
in_convert
;
///< input conversion context
struct
AudioConvert
*
out_convert
;
///< output conversion context
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment