Skip to content
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

addressing #3805: remove deprecated function call 3 #3861

Merged
merged 9 commits into from
Jun 1, 2021

Conversation

bjuncek
Copy link
Contributor

@bjuncek bjuncek commented May 19, 2021

Re: #3805

split in multiple PRs to make assesing FBCode compatibility easier for @prabhat00155

This should cover most warnings that are one liners and shouldn't change the code's behaviour.

@bjuncek bjuncek changed the title addressing #3805: remove deprecated function call 2 addressing #3805: remove deprecated function call 3 May 19, 2021
Copy link
Contributor

@prabhat00155 prabhat00155 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

@@ -7,13 +7,13 @@ namespace ffmpeg {

namespace {
bool operator==(const AudioFormat& x, const AVFrame& y) {
return x.samples == y.sample_rate && x.channels == y.channels &&
return static_cast<int>(x.samples) == y.sample_rate && static_cast<int>(x.channels) == y.channels &&
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants