1
2
3
4
5
6
7
8
9
10
11
12
13 | diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c
index ac61723c66..5fba2cddaf 100644
--- a/libavformat/rmdec.c
+++ b/libavformat/rmdec.c
@@ -725,7 +725,7 @@ static int rm_sync(AVFormatContext *s, int64_t *timestamp, int *flags, int *stre
num = avio_rb16(pb);
*timestamp = avio_rb32(pb);
mlti_id = (avio_r8(pb)>>1)-1<<16;
- mlti_id = FFMAX(mlti_id, 0);
+ mlti_id = 0; //FFMAX(mlti_id, 0);
*flags = avio_r8(pb); /* flags */
}
for(i=0;i<s->nb_streams;i++) {
|