sc = ut->sc = para_calloc(sizeof(*sc));
ut->fcp.slices_per_group = scd->slices_per_group;
ut->fcp.data_slices_per_group = scd->data_slices_per_group;
- ut->fcp.max_slice_bytes = scd->max_slice_bytes;
ut->fcp.init_fec = udp_init_fec;
ut->fcp.send_fec = udp_send_fec;
list_for_each_entry(sc, &targets, node) {
struct udp_target *ut = sc->private_data;
- char *tmp = make_message("%s%s/%u:%u:%u ",
+ char *tmp = make_message("%s%s/%u:%u ",
tgts ? : "", sc->name,
- ut->fcp.max_slice_bytes,
ut->fcp.data_slices_per_group,
ut->fcp.slices_per_group
);
int num_extra_slices;
/** Contains the FEC-encoded data. */
unsigned char *enc_buf;
+ /** Maximal packet size. */
+ int mps;
};
/**
write_u32(buf + 14, g->bytes);
write_u8(buf + 18, fc->current_slice_num);
- write_u16(buf + 20, p->max_slice_bytes - FEC_HEADER_SIZE);
+ write_u16(buf + 20, fc->mps - FEC_HEADER_SIZE);
write_u8(buf + 22, g->first_chunk? 0 : 1);
write_u8(buf + 23, vsst->header_len? 1 : 0);
memset(buf + 24, 0, 7);
fc->extra_src_buf = para_realloc(fc->extra_src_buf, mps);
memset(fc->extra_src_buf, 0, mps);
- fc->fcp->max_slice_bytes = mps;
+ fc->mps = mps;
fc->state = FEC_STATE_READY_TO_RUN;
fc->next_header_time.tv_sec = 0;
fc->stream_start = *now;
g->first_chunk += g->num_chunks;
g->num++;
}
- slice_bytes = fc->fcp->max_slice_bytes - FEC_HEADER_SIZE;
+ slice_bytes = fc->mps - FEC_HEADER_SIZE;
PARA_CRIT_LOG("slice_bytes: %d\n", slice_bytes);
k = fc->fcp->data_slices_per_group + fc->num_extra_slices;
n = fc->fcp->slices_per_group + fc->num_extra_slices;
PARA_CRIT_LOG("k: %d, n: %d\n", k, n);
if (need_audio_header(fc, vsst)) {
- ret = num_slices(vsst->header_len, fc->fcp->max_slice_bytes,
- n - k);
+ ret = num_slices(vsst->header_len, slice_bytes, n - k);
if (ret < 0)
return ret;
g->num_header_slices = ret;
}
write_fec_header(fc, vsst);
fec_encode(fc->parms, fc->src_data, fc->enc_buf + FEC_HEADER_SIZE,
- fc->current_slice_num,
- fc->fcp->max_slice_bytes - FEC_HEADER_SIZE);
+ fc->current_slice_num, fc->mps - FEC_HEADER_SIZE);
return 1;
}
if (compute_next_fec_slice(fc, vsst) <= 0)
continue;
PARA_DEBUG_LOG("sending %d:%d (%u bytes)\n", fc->group.num,
- fc->current_slice_num, fc->fcp->max_slice_bytes);
- fc->fcp->send_fec(fc->sc, (char *)fc->enc_buf,
- fc->fcp->max_slice_bytes);
+ fc->current_slice_num, fc->mps);
+ fc->fcp->send_fec(fc->sc, (char *)fc->enc_buf, fc->mps);
fc->current_slice_num++;
fec_active = 1;
}