-
Notifications
You must be signed in to change notification settings - Fork 51
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
Add support for the Opus codec #179
base: master
Are you sure you want to change the base?
Conversation
A few additional details:
|
what can be done to bring this forward? |
@fbriere Great work ! Opus work's very well. Can you please merge this changes into master ? |
a599bc5
to
8626a03
Compare
@petrov-adg Thanks for your positive feedback! I'll go ahead and remove the |
t_sdp::get_fmtp() previously assumed that any "a=fmtp:" line contained only two tokens, but RFC 4566 does not preclude the presence of spaces in the "format specific parameters" part. In fact, there are many examples (such as found in RFC 6871) where multiple parameters are separated by "; ", thus creating several tokens. The proper fix would probably be to introduce a `maxsplit` argument to split_ws() in order to keep the whole string intact, but that would be a bit intrusive. Simply putting some spaces back to reconstruct the string to a somewhat equivalent version will be enough for our needs.
`IMPORTED_TARGET` was only introduced in CMake 3.6.
These generic names added by Qt Designer do nothing but cause conflicts.
This branch is now rebased and ready for merging. (The conflict was merely due to an already-applied commit. I'm a bit surprised that GitHub would be stumped by this.) |
Closes #101