diff options
author | zuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-02 16:25:18 +0000 |
---|---|---|
committer | zuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-06-02 16:25:18 +0000 |
commit | a9df2bb148f170f00f1a6c96c542784bfee7bfe4 (patch) | |
tree | 41b34011828b3824f2950de1a5eb88c958906711 /mp3lib/mpg123.h | |
parent | 991ff1be271453f937f0678f62f9b26f429ff531 (diff) | |
download | mpv-a9df2bb148f170f00f1a6c96c542784bfee7bfe4.tar.bz2 mpv-a9df2bb148f170f00f1a6c96c542784bfee7bfe4.tar.xz |
Use int and uint32_t instead of long and unsigned long, when appropriate.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23452 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/mpg123.h')
-rw-r--r-- | mp3lib/mpg123.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mp3lib/mpg123.h b/mp3lib/mpg123.h index e223bd67c8..478f94dd01 100644 --- a/mp3lib/mpg123.h +++ b/mp3lib/mpg123.h @@ -71,7 +71,7 @@ struct frame { int lay; int error_protection; int bitrate_index; - long sampling_frequency; + int sampling_frequency; int padding; int extension; int mode; @@ -79,7 +79,7 @@ struct frame { int copyright; int original; int emphasis; - long framesize; /* computed framesize */ + int framesize; /* computed framesize */ }; |