VIDEO: Remove unused variable
This commit is contained in:
parent
928fd72a35
commit
342fd8cc28
1 changed files with 0 additions and 2 deletions
|
@ -113,7 +113,6 @@ void QuickTimeDecoder::pauseVideoIntern(bool pause) {
|
||||||
|
|
||||||
QuickTimeDecoder::VideoTrackHandler *QuickTimeDecoder::findNextVideoTrack() const {
|
QuickTimeDecoder::VideoTrackHandler *QuickTimeDecoder::findNextVideoTrack() const {
|
||||||
VideoTrackHandler *bestTrack = 0;
|
VideoTrackHandler *bestTrack = 0;
|
||||||
int32 num;
|
|
||||||
uint32 bestTime = 0xffffffff;
|
uint32 bestTime = 0xffffffff;
|
||||||
|
|
||||||
for (uint32 i = 0; i < _handlers.size(); i++) {
|
for (uint32 i = 0; i < _handlers.size(); i++) {
|
||||||
|
@ -124,7 +123,6 @@ QuickTimeDecoder::VideoTrackHandler *QuickTimeDecoder::findNextVideoTrack() cons
|
||||||
if (time < bestTime) {
|
if (time < bestTime) {
|
||||||
bestTime = time;
|
bestTime = time;
|
||||||
bestTrack = track;
|
bestTrack = track;
|
||||||
num = i;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue