Add support for flac in ogg container

Signed-off-by: Mahyar Koshkouei <deltabeard@users.noreply.github.com>
This commit is contained in:
Mahyar Koshkouei
2017-03-10 20:30:10 +00:00
parent 7615dd7710
commit 42d880ade2
3 changed files with 28 additions and 0 deletions

View File

@@ -41,3 +41,11 @@ uint64_t decodeFlac(void* buffer);
* Free Flac decoder.
*/
void exitFlac(void);
/**
* Checks if the input file is Flac
*
* \param in Input file.
* \return 0 if Flac file, else not or failure.
*/
int isFlac(const char* in);