mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix compiler warning about assignment in conditional.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=140332890
This commit is contained in:
parent
f9c7343e76
commit
f7132a7a73
1 changed files with 2 additions and 2 deletions
|
|
@ -326,7 +326,7 @@ void releaseContext(AVCodecContext *context) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
AVAudioResampleContext *resampleContext;
|
AVAudioResampleContext *resampleContext;
|
||||||
if (resampleContext = (AVAudioResampleContext *)context->opaque) {
|
if ((resampleContext = (AVAudioResampleContext *) context->opaque)) {
|
||||||
avresample_free(&resampleContext);
|
avresample_free(&resampleContext);
|
||||||
context->opaque = NULL;
|
context->opaque = NULL;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue