-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RTC: Refine FFmpeg opus audio noisy issue. v5.0.197 v6.0.97 #3852
Merged
winlinvip
merged 6 commits into
ossrs:develop
from
chundonglinlin:bugfix/refine-ffmpeg-opus
Nov 4, 2023
Merged
RTC: Refine FFmpeg opus audio noisy issue. v5.0.197 v6.0.97 #3852
winlinvip
merged 6 commits into
ossrs:develop
from
chundonglinlin:bugfix/refine-ffmpeg-opus
Nov 4, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chundonglinlin
changed the title
RTC: Refine FFmpeg opus audio noisy issue.(#3845)
RTC: Refine FFmpeg opus audio noisy issue.
Oct 27, 2023
Why should we make this change? What problems might arise? What issues does it solve?
|
xiaozhihong
reviewed
Oct 28, 2023
winlinvip
approved these changes
Nov 4, 2023
winlinvip
changed the title
RTC: Refine FFmpeg opus audio noisy issue.
RTC: Refine FFmpeg opus audio noisy issue. v5.0.197 v6.0.97
Nov 4, 2023
winlinvip
pushed a commit
that referenced
this pull request
Nov 4, 2023
When converting between AAC and Opus formats (aac2opus or opus2aac), the `av_frame_get_buffer` API is frequently called. The goal is to optimize the code logic and reduce the frequent allocation and deallocation of memory. In the case of aac2opus, av_frame_get_buffer is still frequently called. In the case of opus2aac, the goal is to avoid calling av_frame_get_buffer and reduce memory allocations. Before calling the `av_audio_fifo_read` API, use `av_frame_make_writable` to check if the frame is writable. If it is not writable, create a new frame. --------- Co-authored-by: john <hondaxiao@tencent.com>
duiniuluantanqin
pushed a commit
to duiniuluantanqin/srs
that referenced
this pull request
Nov 16, 2023
When converting between AAC and Opus formats (aac2opus or opus2aac), the `av_frame_get_buffer` API is frequently called. The goal is to optimize the code logic and reduce the frequent allocation and deallocation of memory. In the case of aac2opus, av_frame_get_buffer is still frequently called. In the case of opus2aac, the goal is to avoid calling av_frame_get_buffer and reduce memory allocations. Before calling the `av_audio_fifo_read` API, use `av_frame_make_writable` to check if the frame is writable. If it is not writable, create a new frame. --------- Co-authored-by: john <hondaxiao@tencent.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
When converting between AAC and Opus formats (aac2opus or opus2aac), the
av_frame_get_buffer
API is frequently called.Objective
The goal is to optimize the code logic and reduce the frequent allocation and deallocation of memory.
In the case of aac2opus, av_frame_get_buffer is still frequently called.
In the case of opus2aac, the goal is to avoid calling av_frame_get_buffer and reduce memory allocations.
Additional Note
Before calling the
av_audio_fifo_read
API, useav_frame_make_writable
to check if the frame is writable. If it is not writable, create a new frame.TRANS_BY_GPT4
Co-authored-by: john hondaxiao@tencent.com