Skip to content

Commit

Permalink
display uncC profile as string (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
dukesook authored Jan 27, 2025
1 parent c48605a commit bfa8d8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsing/uncC.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BoxParser.createFullBoxCtor("uncC", function(stream) {
var i;
this.profile = stream.readUint32();
this.profile = stream.readString(4);
if (this.version == 1) {
// Nothing - just the profile
} else if (this.version == 0) {
Expand Down

0 comments on commit bfa8d8b

Please sign in to comment.