Skip to content

Commit

Permalink
Remove redundant copy of fish_sound_set_interleave() declaration,
Browse files Browse the repository at this point in the history
and fix a typo in its documentation

git-svn-id: http://svn.annodex.net/libfishsound/trunk@3886 8158c8cd-e7e1-0310-9fa4-c5954c97daef
  • Loading branch information
conrad committed Mar 19, 2009
1 parent da0c514 commit a2e3019
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions include/fishsound/deprecated.h
Expand Up @@ -41,27 +41,6 @@
extern "C" {
#endif

/**
* DEPRECATED FUNCTION.
* Set the PCM format used by a FishSound object. The default value is
* non-interleaved.
* Prior to libfishsound 0.7.0, you would (optionally) specify whether you
* wanted to receive interleaved or per-channel PCM data using
* fish_sound_set_interleave(), the default being per-channel
* (non-interleaved) PCM.
* Whether or not your decoded callback expects interleaved or
* non-interleaved data is now implied by the particular
* fish_sound_set_decoded_TYPE() method you use to set it, such as
* fish_sound_set_decoded_float() or fish_sound_set_decode_float_ilv().
*
* \param fsound A FishSound* handle
* \param interleave Whether to use interleaved PCM or not. Valid values are
* 0 for non-interleaved, and 1 for interleaved.
* \retval 0 Success
* \retval -1 Invalid \a fsound
*/
int fish_sound_set_interleave (FishSound * fsound, int interleave);

/**
* DEPRECATED TYPE.
* Signature of a callback for libfishsound to call when it has decoded
Expand Down Expand Up @@ -99,7 +78,7 @@ int fish_sound_set_decoded_callback (FishSound * fsound,
* Whether or not your decoded callback expects interleaved or
* non-interleaved data is now implied by the particular
* fish_sound_set_decoded_TYPE() method you use to set it, such as
* fish_sound_set_decoded_float() or fish_sound_set_decode_float_ilv().
* fish_sound_set_decoded_float() or fish_sound_set_decoded_float_ilv().
*
* \param fsound A FishSound* handle
* \param interleave Whether to use interleaved PCM or not. Valid values are
Expand Down

0 comments on commit a2e3019

Please sign in to comment.