aboutsummaryrefslogtreecommitdiff
path: root/sound/flac.h
diff options
context:
space:
mode:
Diffstat (limited to 'sound/flac.h')
-rw-r--r--sound/flac.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/sound/flac.h b/sound/flac.h
index 5b8acf1154..7c891d41d8 100644
--- a/sound/flac.h
+++ b/sound/flac.h
@@ -55,29 +55,6 @@ class AudioStream;
class SeekableAudioStream;
/**
- * TODO: This is an deprecated interface, it is only for the transition to
- * SeekableAudioStream in the engines.
- *
- * Create a new AudioStream from the FLAC data in the given stream.
- * Allows for looping (which is why we require a SeekableReadStream),
- * and specifying only a portion of the data to be played, based
- * on time offsets.
- *
- * @param stream the SeekableReadStream from which to read the FLAC data
- * @param disposeAfterUse whether to delete the stream after use
- * @param startTime the (optional) time offset in milliseconds from which to start playback
- * @param duration the (optional) time in milliseconds specifying how long to play
- * @param numLoops how often the data shall be looped (0 = infinite)
- * @return a new AudioStream, or NULL, if an error occured
- */
-AudioStream *makeFlacStream(
- Common::SeekableReadStream *stream,
- bool disposeAfterUse,
- uint32 startTime,
- uint32 duration,
- uint numLoops);
-
-/**
* Create a new SeekableAudioStream from the FLAC data in the given stream.
* Allows for seeking (which is why we require a SeekableReadStream).
*