summaryrefslogtreecommitdiff
path: root/apps/metadata
diff options
context:
space:
mode:
authorYoshihisa Uchida <uchida@rockbox.org>2010-02-28 08:13:30 +0000
committerYoshihisa Uchida <uchida@rockbox.org>2010-02-28 08:13:30 +0000
commit8c5eaa35ecd8b5239e2cb4848e29310daa6f4a88 (patch)
treec9da4e9c38f4ebb150c36bdac88136a7336146ff /apps/metadata
parent4e3c8074664fa87b023643f375171d544d662141 (diff)
downloadrockbox-8c5eaa35ecd8b5239e2cb4848e29310daa6f4a88.tar.gz
rockbox-8c5eaa35ecd8b5239e2cb4848e29310daa6f4a88.zip
Add vox (Dialogic telephony formats) codec add. (FS#11021)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24956 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata')
-rw-r--r--apps/metadata/metadata_parsers.h1
-rw-r--r--apps/metadata/vox.c43
2 files changed, 44 insertions, 0 deletions
diff --git a/apps/metadata/metadata_parsers.h b/apps/metadata/metadata_parsers.h
index 392f16a8d9..3e7abb5c53 100644
--- a/apps/metadata/metadata_parsers.h
+++ b/apps/metadata/metadata_parsers.h
@@ -44,3 +44,4 @@ bool get_nsf_metadata(int fd, struct mp3entry* id3);
44bool get_oma_metadata(int fd, struct mp3entry* id3); 44bool get_oma_metadata(int fd, struct mp3entry* id3);
45bool get_smaf_metadata(int fd, struct mp3entry* id3); 45bool get_smaf_metadata(int fd, struct mp3entry* id3);
46bool get_au_metadata(int fd, struct mp3entry* id3); 46bool get_au_metadata(int fd, struct mp3entry* id3);
47bool get_vox_metadata(int fd, struct mp3entry* id3);
diff --git a/apps/metadata/vox.c b/apps/metadata/vox.c
new file mode 100644
index 0000000000..2d937e2c73
--- /dev/null
+++ b/apps/metadata/vox.c
@@ -0,0 +1,43 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 Yoshihisa Uchida
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#include <stdio.h>
22#include <string.h>
23#include <stdlib.h>
24#include <ctype.h>
25#include <inttypes.h>
26
27#include "system.h"
28#include "metadata.h"
29#include "metadata_common.h"
30#include "metadata_parsers.h"
31#include "logf.h"
32
33bool get_vox_metadata(int fd, struct mp3entry* id3)
34{
35 /* vox is headerless format */
36
37 id3->frequency = 8000;
38 id3->vbr = false; /* All VOX files are CBR */
39 id3->filesize = filesize(fd);
40 id3->length = ((int64_t) id3->filesize * 2000) / id3->frequency;
41
42 return true;
43}