TrueAudio support.

This is last of the three formats implemented for libtunepimp, now used also by various players.

BUG:114982


git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@735116 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Lukáš Lalinský
2007-11-10 22:55:14 +00:00
parent 2462905fe0
commit 049f77f0d9
15 changed files with 758 additions and 5 deletions

BIN
tests/data/empty.tta Normal file

Binary file not shown.

View File

@ -16,6 +16,7 @@ class TestFileRef : public CppUnit::TestFixture
CPPUNIT_TEST(testSpeex);
CPPUNIT_TEST(testFLAC);
CPPUNIT_TEST(testMP3);
CPPUNIT_TEST(testTrueAudio);
CPPUNIT_TEST_SUITE_END();
public:
@ -90,6 +91,11 @@ public:
fileRefSave("xing", ".mp3");
}
void testTrueAudio()
{
fileRefSave("empty", ".tta");
}
};
CPPUNIT_TEST_SUITE_REGISTRATION(TestFileRef);