Skip to content

Commit

Permalink
fixed bug introduced in ea708a0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlf committed Apr 5, 2024
1 parent 4468b2e commit 9e8e8d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/mp4box/fileimport.c
Expand Up @@ -2880,7 +2880,7 @@ GF_Err cat_isomedia_file(GF_ISOFile *dest, char *fileName, u32 import_flags, GF_
/*if not forcing cat, check the media codec config is the same*/
if (!gf_isom_is_same_sample_description(orig, i+1, 0, dest, dst_tk, 0)) {
//we will need to merge the same descriptions
if (!force_cat) dst_tk_sample_entry = dst_tk;
if (!force_cat && !dst_tk_sample_entry) dst_tk_sample_entry = dst_tk;
dst_tk = 0;
}
/*we force the same visual resolution*/
Expand Down

0 comments on commit 9e8e8d1

Please sign in to comment.