comparison libmpdemux/demux_audio.c @ 21651:54aef84a6b50

doxify a comment
author reimar
date Mon, 18 Dec 2006 15:15:21 +0000
parents 0463916369ed
children 0427f8190a12
comparison
equal deleted inserted replaced
21650:0463916369ed 21651:54aef84a6b50
29 } da_priv_t; 29 } da_priv_t;
30 30
31 //! rather arbitrary value for maximum length of wav-format headers 31 //! rather arbitrary value for maximum length of wav-format headers
32 #define MAX_WAVHDR_LEN (1 * 1024 * 1024) 32 #define MAX_WAVHDR_LEN (1 * 1024 * 1024)
33 33
34 // how many valid frames in a row we need before accepting as valid MP3 34 //! how many valid frames in a row we need before accepting as valid MP3
35 #define MIN_MP3_HDRS 12 35 #define MIN_MP3_HDRS 12
36 36
37 //! Used to describe a potential (chain of) MP3 headers we found 37 //! Used to describe a potential (chain of) MP3 headers we found
38 typedef struct mp3_hdr { 38 typedef struct mp3_hdr {
39 off_t frame_pos; // start of first frame in this "chain" of headers 39 off_t frame_pos; // start of first frame in this "chain" of headers