Browse Source

matroskadec: remove useless levelup check

Originally committed as revision 14584 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Aurelien Jacobs 17 years ago
parent
commit
dfde36a33e
1 changed files with 0 additions and 7 deletions
  1. +0
    -7
      libavformat/matroskadec.c

+ 0
- 7
libavformat/matroskadec.c View File

@@ -550,8 +550,6 @@ ebml_read_element_id (MatroskaDemuxContext *matroska,

/* if we re-call this, use our cached ID */
if (matroska->peek_id != 0) {
if (level_up)
*level_up = 0;
*id = matroska->peek_id;
return 0;
}
@@ -1084,11 +1082,6 @@ static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
res = ebml_parse_id(matroska, syntax, id, data);
if (once)
break;

if (matroska->level_up) {
matroska->level_up--;
break;
}
}

return res;


Loading…
Cancel
Save