| | 716 | |
|---|
| | 717 | #if 0 |
|---|
| | 718 | /* |
|---|
| | 719 | * Defined at: http://flac.sourceforge.net/ogg_mapping.html |
|---|
| | 720 | * - Native FLAC audio frames appear as subsequent packets in the stream. |
|---|
| | 721 | * Each packet corresponds to one FLAC audio frame. |
|---|
| | 722 | * - FLAC packets may span page boundaries. |
|---|
| | 723 | * |
|---|
| | 724 | * The frame header defines block size |
|---|
| | 725 | * http://flac.sourceforge.net/format.html#frame_header |
|---|
| | 726 | * |
|---|
| | 727 | * Note that most FLAC packets will have a granulepos, but rare cases exist |
|---|
| | 728 | * where they don't. See for example |
|---|
| | 729 | * http://rafb.net/paste/results/Pkib5w72.html |
|---|
| | 730 | */ |
|---|
| | 731 | |
|---|
| | 732 | static ogg_int64_t |
|---|
| | 733 | auto_calc_flac (ogg_int64_t now, oggz_stream_t *stream, ogg_packet *op) |
|---|
| | 734 | { |
|---|
| | 735 | } |
|---|
| | 736 | #endif |
|---|
| | 737 | |
|---|