Skip to content

Commit

Permalink
fix embedded file extension for AIFF/AIFC
Browse files Browse the repository at this point in the history
  • Loading branch information
agfline committed Jul 5, 2023
1 parent 3bacf0f commit 98a57c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AAFIface/AAFIAudioFiles.c
Original file line number Diff line number Diff line change
Expand Up @@ -1500,7 +1500,7 @@ int aafi_extract_audio_essence( AAF_Iface *aafi, aafiAudioEssence *audioEssence,
outfilepath,
(*(outfilepath+strlen(outfilepath)-1) != DIR_SEP) ? DIR_SEP_STR : "",
( forcedFileName != NULL ) ? forcedFileName : eascii_to_ascii(audioEssence->unique_file_name),
"wav" );
(audioEssence->type == AAFI_ESSENCE_TYPE_AIFC) ? "aif" : "wav" );



Expand Down

0 comments on commit 98a57c9

Please sign in to comment.