]> git.tuebingen.mpg.de Git - paraslash.git/blob - afh.h
afh: Introduce audio_format_names[].
[paraslash.git] / afh.h
1 /* Copyright (C) 2005 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
2
3 /** \file afh.h Structures for audio format handling (para_server). */
4
5 /**
6  * The tags used by all audio format handlers.
7  *
8  * Paraslash only uses the more common tags. These are recognized
9  * for all supported audio formats.
10  */
11 struct taginfo {
12         /** TPE1 (id3v2) / ARTIST (vorbis) / ART (aac)/ author(spx) */
13         char *artist;
14         /** TIT2/TITLE/nam */
15         char *title;
16         /** TDRC/YEAR/day */
17         char *year;
18         /** TALB/ALBUM/alb */
19         char *album;
20         /** COMM/COMMENT/cmt */
21         char *comment;
22 };
23
24 /** Audio format dependent information. */
25 struct afh_info {
26         /** The number of chunks this audio file contains. */
27         uint32_t chunks_total;
28         /** The length of the audio file in seconds. */
29         uint32_t seconds_total;
30         /** Audio handler specific info about the file. */
31         char *techinfo;
32         /** Id3 tags, vorbis comments, aac tags. */
33         struct taginfo tags;
34         /**
35          * The table that specifies the offset of the individual pieces in
36          * the current audio file.
37          */
38         uint32_t *chunk_table;
39         /** Size of the largest chunk, introduced in v0.6.0. */
40         uint32_t max_chunk_size;
41         /** Period of time between sending data chunks. */
42         struct timeval chunk_tv;
43         /**
44          * The header is needed by senders in case a new client connects in the
45          * middle of the stream. The length of the header defaults to zero
46          * which means that this audio format does not need any special header
47          * treatment. The audio format handler does not need to set this to
48          * zero in this case.
49          */
50         uint32_t header_len;
51         /** The number of channels. */
52         uint8_t channels;
53         /** Frequency in Hz. */
54         uint16_t frequency;
55         /** Exact meaning depends on audio format. */
56         uint16_t bitrate;
57 };
58
59 /** Data about the current audio file, passed from afs to server. */
60 struct audio_file_data {
61         /** The open file descriptor to the current audio file. */
62         int fd;
63         /** Vss needs this for streaming. */
64         struct afh_info afhi;
65         /**
66          * Size of the largest chunk. Superseded by afhi->max_chunk_size. May
67          * be removed after v0.6.1.
68          */
69         uint32_t max_chunk_size;
70         /** Needed to get the audio file header. */
71         uint8_t audio_format_id;
72 };
73
74 /**
75  * Structure for audio format handling.
76  *
77  * There's one such struct for each supported audio format. Initially, only \a
78  * name and \a init are defined. During the startup process, para_server calls
79  * the \a init function of each audio format handler which is expected to fill
80  * in the other part of this struct.
81  */
82 struct audio_format_handler {
83         /**
84          * Pointer to the audio format handler's init function.
85          *
86          * Must initialize all function pointers and is assumed to succeed.
87          */
88         void (*init)(struct audio_format_handler*);
89         /** Typical file endings for files that can be handled by this afh. */
90         const char * const *suffixes;
91         /**
92          * Check if this audio format handler can handle the file.
93          *
94          * This is a pointer to a function returning whether a given file is
95          * valid for this audio format. A negative return value indicates that
96          * this audio format handler is unable to decode the given file. On
97          * success, the function must return a positive value and fill in the
98          * given struct afh_info.
99          *
100          * \sa struct \ref afh_info.
101          */
102         int (*get_file_info)(char *map, size_t numbytes, int fd,
103                 struct afh_info *afhi);
104         /** Optional, used for header-rewriting. See \ref afh_get_header(). */
105         void (*get_header)(void *map, size_t mapsize, char **buf, size_t *len);
106         /**
107          * An audio format handler may signify support for dynamic chunks by
108          * defining ->get_chunk below. In this case the vss calls ->open() at
109          * BOS, ->get_chunk() for each chunk while streaming, and ->close() at
110          * EOS. The chunk table is not accessed at all.
111          *
112          * The function may return its (opaque) context through the last
113          * argument. The returned pointer is passed to subsequent calls to
114          * ->get_chunk() and ->close().
115          */
116         int (*open)(const void *map, size_t mapsize, void **afh_context);
117         /**
118          * Return a reference to one chunk. The returned pointer points to a
119          * portion of the memory mapped audio file. The caller must not call
120          * free() on it.
121          */
122         int (*get_chunk)(long unsigned chunk_num, void *afh_context,
123                 const char **buf, size_t *len);
124         /** Deallocate the resources occupied by ->open(). */
125         void (*close)(void *afh_context);
126         /**
127          * Write audio file with altered tags, optional.
128          *
129          * The output file descriptor has been opened by the caller and must not
130          * be closed in this function.
131          */
132         int (*rewrite_tags)(const char *map, size_t mapsize, struct taginfo *tags,
133                 int output_fd, const char *filename);
134 };
135
136 void afh_init(void);
137 int guess_audio_format(const char *name);
138 int compute_afhi(const char *path, char *data, size_t size,
139         int fd, struct afh_info *afhi);
140 const char *audio_format_name(int);
141 __must_check int afh_get_chunk(long unsigned chunk_num, struct afh_info *afhi,
142                 uint8_t audio_format_id, const void *map, size_t mapsize,
143                 const char **buf, size_t *len, void **afh_context);
144 void afh_close(void *afh_context, uint8_t audio_format_id);
145 int32_t afh_get_start_chunk(int32_t approx_chunk_num,
146                 const struct afh_info *afhi, uint8_t audio_format_id);
147 void afh_get_header(struct afh_info *afhi, uint8_t audio_format_id,
148                 void *map, size_t mapsize, char **buf, size_t *len);
149 void afh_free_header(char *header_buf, uint8_t audio_format_id);
150 void clear_afhi(struct afh_info *afhi);
151 unsigned afh_get_afhi_txt(int audio_format_num, struct afh_info *afhi, char **result);
152 int afh_rewrite_tags(int audio_format_id, void *map, size_t mapsize,
153                 struct taginfo *tags, int output_fd, const char *filename);
154 void set_max_chunk_size(struct afh_info *afhi);
155 bool afh_supports_dynamic_chunks(int audio_format_id);