6f6e832484f1c7f2021885e9b2cab144789da27f
2 * Copyright (C) 1997-2008 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file afh_common.c Common audio format handler functions. */
9 #include <sys/mman.h> /* mmap */
10 #include <sys/time.h> /* gettimeofday */
11 #include <sys/types.h>
19 /* The mp3 audio format handler does not need any libs. */
20 void mp3_init(struct audio_format_handler
*);
23 void ogg_init(struct audio_format_handler
*);
26 void aac_afh_init(struct audio_format_handler
*);
30 * The list of supported audio formats.
32 * We always define the full array of audio formats even if some audio formats
33 * were not compiled in. This is because for each audio file the number of its
34 * audio format is stored in the database. We don't want that numbers to become
35 * stale just because the user installed a new version of paraslash that
36 * supports a different set of audio formats.
38 * It can still be easily detected whether an audio format is compiled in by
39 * checking if the init function pointer is not \p NULL.
41 static struct audio_format_handler afl
[] = {
63 static inline int next_audio_format(int format
)
66 if (!afl
[format
].name
)
75 /** Iterate over each supported audio format. */
76 #define FOR_EACH_AUDIO_FORMAT(i) for (i = 0; afl[i].name; i = next_audio_format(i))
79 * Call the init function of each supported audio format handler.
85 PARA_INFO_LOG("supported audio formats: %s\n",
86 SUPPORTED_AUDIO_FORMATS
);
87 FOR_EACH_AUDIO_FORMAT(i
) {
88 PARA_NOTICE_LOG("initializing %s handler\n",
89 audio_format_name(i
));
96 * Guess the audio format judging from filename.
98 * \param name The filename.
100 * \return This function returns -1 if it has no idea what kind of audio
101 * file this might be. Otherwise the (non-negative) number of the audio format
104 int guess_audio_format(const char *name
)
106 int i
,j
, len
= strlen(name
);
108 FOR_EACH_AUDIO_FORMAT(i
) {
109 for (j
= 0; afl
[i
].suffixes
[j
]; j
++) {
110 const char *p
= afl
[i
].suffixes
[j
];
111 int plen
= strlen(p
);
114 if (name
[len
- plen
- 1] != '.')
116 if (strcasecmp(name
+ len
- plen
, p
))
118 // PARA_DEBUG_LOG("might be %s\n", audio_format_name(i));
126 * Call get_file_info() to obtain an afhi structure.
128 * \param path The full path of the audio file.
129 * \param data Pointer to the contents of the (mapped) file.
130 * \param size The file size in bytes.
131 * \param fd The open file descriptor.
132 * \param afhi Result pointer.
134 * \return The number of the audio format on success, \p -E_AUDIO_FORMAT if no
135 * compiled in audio format handler is able to handler the file.
137 * This function tries to find an audio format handler that can interpret the
138 * file given by \a data and \a size.
140 * It first tries to determine the audio format from the filename given by \a
141 * path. If this doesn't work, all other audio format handlers are tried until
142 * one is found that can handle the file.
144 int compute_afhi(const char *path
, char *data
, size_t size
, int fd
,
145 struct afh_info
*afhi
)
149 afhi
->header_offset
= 0;
150 afhi
->header_len
= 0;
151 format
= guess_audio_format(path
);
154 ret
= afl
[format
].get_file_info(data
, size
, fd
, afhi
);
158 FOR_EACH_AUDIO_FORMAT(i
) {
159 if (i
== format
) /* we already tried this one to no avail */
161 ret
= afl
[i
].get_file_info(data
, size
, fd
, afhi
);
164 PARA_WARNING_LOG("%s\n", para_strerror(-ret
));
166 return -E_AUDIO_FORMAT
;
170 * Get the name of the given audio format.
172 * \param i The audio format number.
174 * This returns a pointer to statically allocated memory so it
175 * must not be freed by the caller.
177 const char *audio_format_name(int i
)
179 //PARA_NOTICE_LOG("array size: %u¸ requested: %d\n", ARRAY_SIZE(afl), i);
180 assert(i
< 0 || i
< ARRAY_SIZE(afl
) - 1);
181 return i
>= 0? afl
[i
].name
: "(none)";
185 void afh_get_chunk(long unsigned chunk_num
, struct afh_info
*afhi
,
186 void *map
, const char **buf
, size_t *len
)
188 size_t pos
= afhi
->chunk_table
[chunk_num
];
190 *len
= afhi
->chunk_table
[chunk_num
+ 1] - pos
;
194 * Get the header of an audio file.
196 * \param afhi The audio file handler data describing the file.
197 * \param map The data of the audio file.
198 * \param buf The length of the header is stored here.
199 * \param len Points to a buffer containing the header on return.
201 * This function sets \a buf to \p NULL and \a len to zero if \a map or \a
202 * afhi is \p NULL, or if the current audio format does not need special
205 void afh_get_header(struct afh_info
*afhi
, void *map
, const char **buf
, size_t *len
)
207 if (!map
|| !afhi
|| ! afhi
->header_len
) {
211 *len
= afhi
->header_len
;
212 *buf
= map
+ afhi
->header_offset
;