remove obsolete comment reference to end of stream checking in seek routine
authorJosh Coalson <jcoalson@users.sourceforce.net>
Thu, 13 Sep 2007 15:42:27 +0000 (15:42 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Thu, 13 Sep 2007 15:42:27 +0000 (15:42 +0000)
src/libFLAC/stream_decoder.c

index 981ef16..4d86fda 100644 (file)
@@ -3237,9 +3237,7 @@ FLAC__bool seek_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint
                                /* @@@ TODO: might want to limit pos to some distance
                                 * before EOF, to make sure we land before the last frame,
                                 * thereby getting a this_frame_sample and so having a better
-                                * estimate.  @@@@@@DELETE:this would also mostly (or totally if we could
-                                * be sure to land before the last frame) avoid the
-                                * end-of-stream case we have to check later.
+                                * estimate.
                                 */
                        }
 
@@ -3280,7 +3278,7 @@ FLAC__bool seek_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint
                        }
                }
                /* our write callback will change the state when it gets to the target frame */
-               else if(!decoder->private_->is_seeking/*@@@@@@ && decoder->protected_->state != FLAC__STREAM_DECODER_END_OF_STREAM*/) {
+               else if(!decoder->private_->is_seeking) {
                        break;
                }
                else {