mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
The sequence header must not get lost.
This commit is contained in:
parent
c976bcf209
commit
c3ada08d26
@ -283,6 +283,7 @@ int32_t M2VParser::FillQueues(){
|
|||||||
MPEGChunk* seqHdr = NULL;
|
MPEGChunk* seqHdr = NULL;
|
||||||
while(chunk->GetType() != MPEG_VIDEO_PICTURE_START_CODE){
|
while(chunk->GetType() != MPEG_VIDEO_PICTURE_START_CODE){
|
||||||
if(chunk->GetType() == MPEG_VIDEO_SEQUENCE_START_CODE){
|
if(chunk->GetType() == MPEG_VIDEO_SEQUENCE_START_CODE){
|
||||||
|
if (chunks.size() == 1) return -1;
|
||||||
if(seqHdr) delete seqHdr;
|
if(seqHdr) delete seqHdr;
|
||||||
m_seqHdr = ParseSequenceHeader(chunk);
|
m_seqHdr = ParseSequenceHeader(chunk);
|
||||||
seqHdr = chunk;
|
seqHdr = chunk;
|
||||||
@ -291,6 +292,8 @@ int32_t M2VParser::FillQueues(){
|
|||||||
}
|
}
|
||||||
chunks.erase(chunks.begin());
|
chunks.erase(chunks.begin());
|
||||||
if(chunks.empty()){
|
if(chunks.empty()){
|
||||||
|
if(seqHdr != NULL)
|
||||||
|
chunks.push_back(seqHdr);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
chunk = chunks.front();
|
chunk = chunks.front();
|
||||||
|
Loading…
Reference in New Issue
Block a user