Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.4.5
* Disable `udta` ISOBMFF box parsing, since their contents are not guaranteed to be consistent with the spec.

## 2.4.4
* Prevent infinite loops when parsing ISOBMFF boxes with size = 0 (meaning that the box extends to the end of the file).

Expand Down
2 changes: 1 addition & 1 deletion lib/format_parser/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module FormatParser
VERSION = '2.4.4'
VERSION = '2.4.5'
end
2 changes: 1 addition & 1 deletion lib/parsers/iso_base_media_file_format/decoder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def build_box_tree(max_read, io = nil)
'trak' => :container,
# 'trex' => :trex,
# 'tsel' => :tsel,
'udta' => :container,
# 'udta' => :container,
# 'url ' => :dref_url,
# 'urn ' => :dref_urn,
'uuid' => :uuid,
Expand Down