]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - ogg_afh.c
kill the reposition handler in struct audio_format_handler
[paraslash.git] / ogg_afh.c
index 81f5ac1ae8c0b0a1e6496fe1470be3a43c0023f3..b5ecc4b0f3ebc96ec5459d3e7a7e59c3ce5326f9 100644 (file)
--- 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;