|
|
|
@ -515,9 +515,6 @@ retry: |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
av_log(c->fc, AV_LOG_TRACE, "lang \"%3s\" ", language); |
|
|
|
|
av_log(c->fc, AV_LOG_TRACE, "tag \"%s\" value \"%s\" atom \"%.4s\" %d %"PRId64"\n", |
|
|
|
|
key, str, (char*)&atom.type, str_size_alloc, atom.size); |
|
|
|
|
|
|
|
|
|
av_freep(&str); |
|
|
|
|
return 0; |
|
|
|
@ -597,7 +594,6 @@ static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom) |
|
|
|
|
|
|
|
|
|
dref->type = avio_rl32(pb); |
|
|
|
|
avio_rb32(pb); // version + flags
|
|
|
|
|
av_log(c->fc, AV_LOG_TRACE, "type %.4s size %d\n", (char*)&dref->type, size); |
|
|
|
|
|
|
|
|
|
if (dref->type == MKTAG('a','l','i','s') && size > 150) { |
|
|
|
|
/* macintosh alias record */ |
|
|
|
@ -2476,7 +2472,6 @@ static int mov_read_stps(MOVContext *c, AVIOContext *pb, MOVAtom atom) |
|
|
|
|
|
|
|
|
|
for (i = 0; i < entries && !pb->eof_reached; i++) { |
|
|
|
|
sc->stps_data[i] = avio_rb32(pb); |
|
|
|
|
//av_log(c->fc, AV_LOG_TRACE, "stps %d\n", sc->stps_data[i]);
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
sc->stps_count = i; |
|
|
|
@ -2524,7 +2519,6 @@ static int mov_read_stss(MOVContext *c, AVIOContext *pb, MOVAtom atom) |
|
|
|
|
|
|
|
|
|
for (i = 0; i < entries && !pb->eof_reached; i++) { |
|
|
|
|
sc->keyframes[i] = avio_rb32(pb); |
|
|
|
|
//av_log(c->fc, AV_LOG_TRACE, "keyframes[]=%d\n", sc->keyframes[i]);
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
sc->keyframe_count = i; |
|
|
|
|