87b6a3669d6f1ab929dbf7a913f2bf237dcfaef6
2 * Copyright (C) 2009 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file fecdec_filter.c A filter fec-decodes an audio stream. */
17 #include "portable_io.h"
22 * How many FEC groups to store in memory.
24 * Packet reordering requires to keep more than one FEC group in memory because
25 * slices belonging to the next FEC group may arrive before the current FEC group
28 #define NUM_FEC_GROUPS 3
30 /** Size of the output buffer of the fecdec filter. */
31 #define FECDEC_OUTBUF_SIZE 81920
33 /** Data read from the header of a slice. */
35 /** Total number of slices in this group. */
36 uint8_t slices_per_group
;
37 /** Number of slices needed to start decoding. */
38 uint8_t data_slices_per_group
;
39 /** Size of the ogg vorbis header (zero for mp3, aac). */
40 uint32_t audio_header_size
;
41 /** Number of the FEC group this slice belongs to. */
43 /** Size of the data in this FEC group. */
45 /** Number of this slice in the group. */
47 /** Used data bytes of this slice. */
52 * The status of one partially received FEC group.
55 /** The header read from the last slice. */
57 /** How many slices received so far. */
58 int num_received_slices
;
59 /** The size of the \a idx and the \a data arrays below. */
61 /** Array of indices of the received slices. */
63 /** Content of the received slices. */
68 * Data private to the fecdec filter.
70 struct private_fecdec_data
{
71 /** Used by the fec core code. */
72 struct fec_parms
*fec
;
73 /** Keeps track of what was received so far. */
74 struct fecdec_group groups
[NUM_FEC_GROUPS
];
77 /** Iterate over all fecdec groups. */
78 #define FOR_EACH_FECDEC_GROUP(g, d) for (g = (d)->groups; \
79 (g) - (d)->groups < NUM_FEC_GROUPS; (g)++)
82 #define UNUSED_GROUP_NUM 0xffffffff
84 static int group_complete(struct fecdec_group
*fg
)
86 if (fg
->h
.group_num
== UNUSED_GROUP_NUM
)
88 //PARA_INFO_LOG("received slices: %u, slices per group: %u\n", fg->num_received_slices, fg->h.data_slices_per_group);
89 return fg
->num_received_slices
>= fg
->h
.data_slices_per_group
;
92 static int group_empty(struct fecdec_group
*fg
)
94 return fg
->num_received_slices
== 0;
97 static void clear_group(struct fecdec_group
*fg
)
101 if (!group_complete(fg
) && !group_empty(fg
))
102 PARA_WARNING_LOG("Clearing incomplete group %d "
103 "(contains %d slices)\n", fg
->h
.group_num
,
104 fg
->num_received_slices
);
105 for (i
= 0; i
< fg
->num_slices
; i
++) {
113 memset(&fg
->h
, 0, sizeof(struct fec_header
));
114 fg
->num_received_slices
= 0;
115 fg
->h
.group_num
= UNUSED_GROUP_NUM
;
118 static int find_group(struct fec_header
*h
,
119 struct private_fecdec_data
*pfd
, struct fecdec_group
**result
)
121 struct fecdec_group
*fg
;
123 FOR_EACH_FECDEC_GROUP(fg
, pfd
) {
124 if (fg
->h
.group_num
!= h
->group_num
)
126 /* FIXME: Add some more sanity checks here */
133 static struct fecdec_group
*find_unused_group(struct private_fecdec_data
*pfd
)
135 struct fecdec_group
*fg
;
137 FOR_EACH_FECDEC_GROUP(fg
, pfd
) {
138 if (fg
->num_received_slices
== 0)
144 static struct fecdec_group
*try_to_free_group(struct private_fecdec_data
*pfd
)
146 struct fecdec_group
*fg
;
148 FOR_EACH_FECDEC_GROUP(fg
, pfd
) {
149 if (!group_complete(fg
))
157 static struct fecdec_group
*free_oldest_group(struct private_fecdec_data
*pfd
)
159 struct fecdec_group
*fg
, *oldest
= NULL
;
161 FOR_EACH_FECDEC_GROUP(fg
, pfd
) {
162 if (!oldest
|| oldest
->h
.group_num
> fg
->h
.group_num
)
169 static int get_group(struct fec_header
*h
, struct private_fecdec_data
*pfd
,
170 struct fecdec_group
**result
)
172 struct fecdec_group
*fg
;
173 int ret
= find_group(h
, pfd
, &fg
);
177 if (ret
> 0) /* found group */
179 /* group not found */
180 fg
= find_unused_group(pfd
);
183 fg
= try_to_free_group(pfd
);
186 fg
= free_oldest_group(pfd
);
194 static int add_slice(char *buf
, struct fecdec_group
*fg
)
198 if (group_complete(fg
))
200 slice_num
= fg
->h
.slice_num
;
201 if (fg
->num_slices
== 0) {
202 fg
->num_slices
= fg
->h
.slices_per_group
;
203 fg
->idx
= malloc(fg
->num_slices
* sizeof(int));
204 fg
->data
= malloc(fg
->num_slices
* sizeof(unsigned char *));
205 memset(fg
->data
, 0, fg
->num_slices
* sizeof(unsigned char *));
207 r
= fg
->num_received_slices
;
208 fg
->idx
[r
] = slice_num
;
209 fg
->data
[r
] = malloc(fg
->h
.slice_bytes
);
210 memcpy(fg
->data
[r
], buf
, fg
->h
.slice_bytes
);
211 fg
->num_received_slices
++;
215 static int decode_group(struct fecdec_group
*fg
, struct filter_node
*fn
)
217 int i
, ret
, sb
= fg
->h
.slice_bytes
;
219 struct private_fecdec_data
*pfd
= fn
->private_data
;
221 ret
= fec_decode(pfd
->fec
, fg
->data
, fg
->idx
, sb
);
224 PARA_DEBUG_LOG("writing group %d (%d/%d decoded data bytes)\n",
225 fg
->h
.group_num
, fg
->h
.group_bytes
,
226 fg
->h
.data_slices_per_group
* sb
);
227 for (i
= 0; i
< fg
->h
.data_slices_per_group
; i
++) {
229 if (n
+ written
> fg
->h
.group_bytes
)
230 n
= fg
->h
.group_bytes
- written
;
231 if (fn
->loaded
+ n
> fn
->bufsize
)
232 return -E_FECDEC_OVERRUN
;
233 memcpy(fn
->buf
+ fn
->loaded
, fg
->data
[i
], n
);
241 * Read a fec header from a buffer.
243 * \param buf The buffer to write to.
244 * \param h The fec header to write.
246 static int read_fec_header(char *buf
, size_t len
, struct fec_header
*h
)
250 if (len
< FEC_HEADER_SIZE
)
252 magic
= read_u32(buf
);
253 if (magic
!= FEC_MAGIC
)
254 return -E_BAD_FEC_HEADER
;
255 h
->slices_per_group
= read_u8(buf
+ 4);
256 h
->data_slices_per_group
= read_u8(buf
+ 5);
257 h
->audio_header_size
= read_u32(buf
+ 6);
259 h
->group_num
= read_u32(buf
+ 10);
260 h
->group_bytes
= read_u32(buf
+ 14);
262 h
->slice_num
= read_u8(buf
+ 18);
263 h
->slice_bytes
= read_u16(buf
+ 20);
264 if (!h
->group_bytes
&& & h
->slice_bytes
)
265 return -E_FECDEC_EOF
;
266 // PARA_DEBUG_LOG("group %u, slize %u, slices per group: %u\n",
267 // h->group_num, h->slice_num, h->slices_per_group);
271 static int dispatch_slice(char *buf
, size_t len
, struct fec_header
*h
,
272 struct filter_node
*fn
)
274 struct fecdec_group
*fg
;
276 struct private_fecdec_data
*pfd
= fn
->private_data
;
278 if (h
->slice_bytes
> len
) /* can not use the thing, try to read more */
280 ret
= get_group(h
, pfd
, &fg
);
283 if (group_complete(fg
)) {
284 PARA_DEBUG_LOG("group complete, ignoring slice %d\n",
289 ret
= add_slice(buf
, fg
);
292 if (group_complete(fg
)) {
294 int k
= h
->data_slices_per_group
, n
= h
->slices_per_group
;
295 PARA_NOTICE_LOG("init fec (%d, %d)\n", k
, n
);
296 ret
= fec_new(k
, n
, &pfd
->fec
);
300 ret
= decode_group(fg
, fn
);
307 static int fecdec(char *buf
, size_t len
, struct filter_node
*fn
)
312 ret
= read_fec_header(buf
, len
, &h
);
315 if (h
.slice_bytes
> fn
->bufsize
)
316 return -E_BAD_SLICE_SIZE
;
317 if (h
.slice_num
> h
.slices_per_group
)
318 return -E_BAD_SLICE_NUM
;
319 ret
= dispatch_slice(buf
+ FEC_HEADER_SIZE
, len
- FEC_HEADER_SIZE
,
321 //PARA_INFO_LOG("ret: %d, len: %d, slice_bytes: %d\n", ret, len, h.slice_bytes);
324 return FEC_HEADER_SIZE
+ h
.slice_bytes
;
327 static void fecdec_close(struct filter_node
*fn
)
329 struct private_fecdec_data
*pfd
= fn
->private_data
;
330 struct fecdec_group
*fg
;
332 FOR_EACH_FECDEC_GROUP(fg
, pfd
)
336 free(fn
->private_data
);
337 fn
->private_data
= NULL
;
340 static void fecdec_open(struct filter_node
*fn
)
342 fn
->bufsize
= FECDEC_OUTBUF_SIZE
;
343 fn
->buf
= para_malloc(fn
->bufsize
);
344 fn
->private_data
= para_calloc(sizeof(struct private_fecdec_data
));
349 * The init function of the fecdec filter.
351 * \param f struct to initialize.
353 void fecdec_filter_init(struct filter
*f
)
356 f
->close
= fecdec_close
;
357 f
->open
= fecdec_open
;