diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-29 16:52:23 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-29 16:52:23 +0000 |
commit | 430e79b7287e00a0fa69700f745c4c87e46c66a5 (patch) | |
tree | 9f906932430776d7b8cef6e7d5ef47acab6057bb | |
parent | 311ab0560b4a7052f60ed7db632a6bc226f10c6e (diff) | |
download | xine-lib-430e79b7287e00a0fa69700f745c4c87e46c66a5.tar.gz xine-lib-430e79b7287e00a0fa69700f745c4c87e46c66a5.tar.bz2 |
Move streaminfo at the end of the structure to avoid padding.
CVS patchset: 8759
CVS date: 2007/03/29 16:52:23
-rw-r--r-- | src/demuxers/demux_flac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_flac.c b/src/demuxers/demux_flac.c index c9e3f911a..f52da4d03 100644 --- a/src/demuxers/demux_flac.c +++ b/src/demuxers/demux_flac.c @@ -23,7 +23,7 @@ * For more information on the FLAC file format, visit: * http://flac.sourceforge.net/ * - * $Id: demux_flac.c,v 1.16 2007/03/03 01:41:16 dgp85 Exp $ + * $Id: demux_flac.c,v 1.17 2007/03/29 16:52:23 dgp85 Exp $ */ #ifdef HAVE_CONFIG_H @@ -67,10 +67,10 @@ typedef struct { off_t data_start; off_t data_size; - unsigned char streaminfo[sizeof(xine_waveformatex) + FLAC_STREAMINFO_SIZE]; flac_seekpoint_t *seekpoints; int seekpoint_count; + unsigned char streaminfo[sizeof(xine_waveformatex) + FLAC_STREAMINFO_SIZE]; } demux_flac_t; typedef struct { |