From 0113172c1f18f4a168b0a0fdacb376da2f2a73e3 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 14 Feb 2010 23:00:00 +0100 Subject: [PATCH 1/1] oggdec: Kill unused ->stream_start of struct private_oggdec_data(). --- oggdec_filter.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/oggdec_filter.c b/oggdec_filter.c index 2f52d4d4..4ff2aad2 100644 --- a/oggdec_filter.c +++ b/oggdec_filter.c @@ -33,8 +33,6 @@ struct private_oggdec_data { OggVorbis_File *vf; /** The number of bytes consumed from the input buffer. */ size_t converted; - /** When to start producing output. */ - struct timeval stream_start; /** The number of channels of the current stream. */ unsigned int channels; /** Current sample rate in Hz. */ @@ -144,7 +142,6 @@ static int ogg_init(struct filter_node *fn) struct btr_node *btrn = fn->btrn; int ret, oret; size_t iqs; - struct timeval delay = {0, 500 * 1000}; pod->vf = para_malloc(sizeof(struct OggVorbis_File)); PARA_NOTICE_LOG("iqs: %zu, min_iqs: %zu, opening ov callbacks\n", @@ -184,8 +181,6 @@ open: pod->samplerate = ov_info(pod->vf, 0)->rate; PARA_NOTICE_LOG("%d channels, %d Hz\n", pod->channels, pod->samplerate); - /* wait a bit to avoid buffer underruns */ - tv_add(now, &delay, &pod->stream_start); ret = 1; out: if (ret <= 0) { -- 2.30.2