Bug 1733109 - passing result of std::move() as a const reference argument; no move will actually happen in MediaDecoder.cpp. r=bryce

Depends on D126930

Differential Revision: https://phabricator.services.mozilla.com/D126931
This commit is contained in:
Paul Adenot 2021-09-30 12:36:12 +00:00
Родитель f71f67ea1e
Коммит 51242cd516
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1098,7 +1098,7 @@ void MediaDecoder::SetSecondaryVideoContainer(
if (mSecondaryVideoContainer.Ref() == aSecondaryVideoContainer) {
return;
}
mSecondaryVideoContainer = std::move(aSecondaryVideoContainer);
mSecondaryVideoContainer = aSecondaryVideoContainer;
UpdateVideoDecodeMode();
}