| 345 | | if (decoderstate == 0 || decoderstate == 1) |
| 346 | | { |
| | 345 | switch(decoderstate) { |
| | 346 | |
| | 347 | case FLAC__STREAM_DECODER_SEARCH_FOR_METADATA: |
| | 348 | /** The decoder is ready to search for metadata. */ |
| | 349 | |
| | 350 | case FLAC__STREAM_DECODER_READ_METADATA: |
| | 351 | /** The decoder is ready to or is in the process of reading metadata. */ |
| | 352 | |
| | 353 | case FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC: |
| | 354 | /** The decoder is ready to or is in the process of searching for the |
| | 355 | * frame sync code. |
| | 356 | */ |
| | 357 | |
| | 358 | case FLAC__STREAM_DECODER_READ_FRAME: |
| | 359 | /** The decoder is ready to or is in the process of reading a frame. */ |
| | 360 | |