Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
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
savoirfairelinux
jami-daemon
Commits
faaf9460
Commit
faaf9460
authored
1 year ago
by
Adrien Béraud
Browse files
Options
Downloads
Patches
Plain Diff
audiofile, resampler: cleanup
Change-Id: I33d2b5575afc78df2fd35b03e197b5d59a3a0bf7
parent
c62675b0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/media/audio/resampler.cpp
+3
-5
3 additions, 5 deletions
src/media/audio/resampler.cpp
src/media/audio/sound/audiofile.cpp
+1
-1
1 addition, 1 deletion
src/media/audio/sound/audiofile.cpp
with
4 additions
and
6 deletions
src/media/audio/resampler.cpp
+
3
−
5
View file @
faaf9460
...
...
@@ -125,15 +125,13 @@ Resampler::resample(const AVFrame* input, AVFrame* output)
// indicative of an underlying problem in the code. This check is so the backtrace
// doesn't get mangled with a bunch of calls to Resampler::resample
if
(
initCount_
>
1
)
{
std
::
string
msg
=
"Infinite loop detected in audio resampler, please open an issue on "
"https://git.jami.net"
;
JAMI_ERR
()
<<
msg
;
throw
std
::
runtime_error
(
msg
);
JAMI_ERROR
(
"Infinite loop detected in audio resampler, please open an issue on https://git.jami.net"
);
throw
std
::
runtime_error
(
"Resampler"
);
}
reinit
(
input
,
output
);
return
resample
(
input
,
output
);
}
else
if
(
ret
<
0
)
{
JAMI_ERR
()
<<
"Failed to resample frame"
;
JAMI_ERR
OR
(
"Failed to resample frame"
)
;
return
-
1
;
}
...
...
This diff is collapsed.
Click to expand it.
src/media/audio/sound/audiofile.cpp
+
1
−
1
View file @
faaf9460
...
...
@@ -66,7 +66,7 @@ AudioFile::AudioFile(const std::string& fileName, unsigned int sampleRate, AVSam
Resampler
r
{};
auto
decoder
=
std
::
make_unique
<
MediaDecoder
>
(
[
&
r
,
this
,
&
buf
,
&
total_samples
](
const
std
::
shared_ptr
<
MediaFrame
>&
frame
)
mutable
{
auto
resampled
=
r
.
resample
(
std
::
move
(
std
::
static_pointer_cast
<
AudioFrame
>
(
frame
)
)
,
format_
);
auto
resampled
=
r
.
resample
(
std
::
static_pointer_cast
<
AudioFrame
>
(
frame
),
format_
);
total_samples
+=
resampled
->
getFrameSize
();
buf
.
emplace_back
(
std
::
move
(
resampled
));
});
...
...
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