You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avformat/mov: allowing custom udta atoms to pass through their values correctly when export_all option specified.
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
committed by
Michael Niedermayer
parent
3b6ec5abb5
commit
30043cc167
@@ -484,7 +484,7 @@ retry:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
} else return 0;
|
} else return 0;
|
||||||
} else if (atom.size > 4 && key && !c->itunes_metadata && !raw) {
|
} else if (atom.size > 4 && (key || c->export_all) && !c->itunes_metadata && !raw) {
|
||||||
str_size = avio_rb16(pb); // string length
|
str_size = avio_rb16(pb); // string length
|
||||||
if (str_size > atom.size) {
|
if (str_size > atom.size) {
|
||||||
raw = 1;
|
raw = 1;
|
||||||
|
Reference in New Issue
Block a user