Changeset 2572

Show
Ignore:
Timestamp:
2006-12-10 03:38:23 (2 years ago)
Author:
conrad
Message:

add some docs and stub function for auto_calc_flac() [commented out]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • liboggz/trunk/src/liboggz/oggz_auto.c

    r2565 r2572  
    714714   
    715715} 
     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 
     732static ogg_int64_t  
     733auto_calc_flac (ogg_int64_t now, oggz_stream_t *stream, ogg_packet *op) 
     734{ 
     735} 
     736#endif 
     737 
    716738const oggz_auto_contenttype_t oggz_auto_codec_ident[] = { 
    717739  {"\200theora", 7, "Theora", auto_theora, auto_calc_theora},