minor syntax

This commit is contained in:
Josh Coalson
2002-08-01 07:32:17 +00:00
parent cad97be8de
commit 680e3aaef5
3 changed files with 13 additions and 7 deletions

View File

@@ -597,9 +597,12 @@ FLAC__bool FLAC__stream_encoder_set_do_escape_coding(FLAC__StreamEncoder *encode
FLAC__ASSERT(0 != encoder);
if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
return false;
/*@@@ deprecated:
#if 0
/*@@@ deprecated: */
encoder->protected_->do_escape_coding = value;
*/
#else
(void)value;
#endif
return true;
}
@@ -635,9 +638,12 @@ FLAC__bool FLAC__stream_encoder_set_rice_parameter_search_dist(FLAC__StreamEncod
FLAC__ASSERT(0 != encoder);
if(encoder->protected_->state != FLAC__STREAM_ENCODER_UNINITIALIZED)
return false;
/*@@@ deprecated:
#if 0
/*@@@ deprecated: */
encoder->protected_->rice_parameter_search_dist = value;
*/
#else
(void)value;
#endif
return true;
}