Commit 70f7006e authored by Dale Curtis's avatar Dale Curtis Committed by Michael Niedermayer

avformat/mov: Pass through iTunSMPB from MOV.

Allows demuxing of iTunes files into adts while preserving gapless
metadata.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 42f3bc40
......@@ -2534,8 +2534,8 @@ static int mov_read_custom_2plus(MOVContext *c, AVIOContext *pb, int size)
if(priming>0 && priming<16384)
sc->start_pad = priming;
}
} else if (strcmp(key, "cdec") == 0) {
} else {
}
if (strcmp(key, "cdec") != 0) {
av_dict_set(&c->fc->metadata, key, val,
AV_DICT_DONT_STRDUP_KEY | AV_DICT_DONT_STRDUP_VAL);
key = val = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment