diff options
author | yenatch <yenatch@gmail.com> | 2017-01-08 18:08:25 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-01-08 18:08:25 -0500 |
commit | c1330157ee38703e79821fe3f485680b0157352c (patch) | |
tree | ea9d6c648d904367d79c7b8604fd034d132d45be | |
parent | de69de433b922502b6fe4ce966b7b636dcf53a71 (diff) |
aif2pcm: Accept .aiff files too.
-rw-r--r-- | tools/aif2pcm/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aif2pcm/main.c b/tools/aif2pcm/main.c index b7058f0c8..6eb47ade1 100644 --- a/tools/aif2pcm/main.c +++ b/tools/aif2pcm/main.c @@ -833,7 +833,7 @@ int main(int argc, char **argv) } } - if (strcmp(extension, "aif") == 0) + if (strcmp(extension, "aif") == 0 || strcmp(extension, "aiff") == 0) { if (argc >= 3) { |