mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 20:01:53 +00:00
Avoid a warning.
This commit is contained in:
parent
986d1b6470
commit
f160ef592c
@ -44,7 +44,7 @@ MPEGFrame::~MPEGFrame(){
|
|||||||
|
|
||||||
void M2VParser::SetEOS(){
|
void M2VParser::SetEOS(){
|
||||||
MPEGChunk * c;
|
MPEGChunk * c;
|
||||||
while(c = mpgBuf->ReadChunk()){
|
while((c = mpgBuf->ReadChunk())){
|
||||||
if(c) chunks.push_back(c);
|
if(c) chunks.push_back(c);
|
||||||
}
|
}
|
||||||
mpgBuf->ForceFinal(); //Force the last frame out.
|
mpgBuf->ForceFinal(); //Force the last frame out.
|
||||||
|
Loading…
Reference in New Issue
Block a user