X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=ogg_afh.c;h=b5ecc4b0f3ebc96ec5459d3e7a7e59c3ce5326f9;hb=c0067c4d103b41d1f80b83170719d4afa999be54;hp=81f5ac1ae8c0b0a1e6496fe1470be3a43c0023f3;hpb=5d1e222d208a8505c6d0e0522ecd79599db57aa8;p=paraslash.git diff --git a/ogg_afh.c b/ogg_afh.c index 81f5ac1a..b5ecc4b0 100644 --- a/ogg_afh.c +++ b/ogg_afh.c @@ -272,11 +272,6 @@ err: return ret; } -static int ogg_reposition_stream(__a_unused long unsigned new_frame) -{ - return 1; -} - static char *ogg_read_chunk(long unsigned current_chunk, ssize_t *len) { int ret; @@ -324,7 +319,6 @@ static const char* ogg_suffixes[] = {"ogg", NULL}; void ogg_init(struct audio_format_handler *p) { af = p; - af->reposition_stream = ogg_reposition_stream; af->get_file_info = ogg_get_file_info, af->read_chunk = ogg_read_chunk; af->close_audio_file = ogg_close_audio_file;