diff options
| author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-06 15:46:20 +0000 |
|---|---|---|
| committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-06 15:46:20 +0000 |
| commit | a0407c7861a4906f41152cf25ac3851a5a8eb6f8 (patch) | |
| tree | 3160016839f00e01d2604a92f6d93fe7eb4142fa /src/demuxers/demux_asf.c | |
| parent | 0dc06920e3a99a06a47474ffb36be60a25bcbfa5 (diff) | |
| download | xine-lib-a0407c7861a4906f41152cf25ac3851a5a8eb6f8.tar.gz xine-lib-a0407c7861a4906f41152cf25ac3851a5a8eb6f8.tar.bz2 | |
some housekeeping and compiler warnings
CVS patchset: 5456
CVS date: 2003/10/06 15:46:20
Diffstat (limited to 'src/demuxers/demux_asf.c')
| -rw-r--r-- | src/demuxers/demux_asf.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c index 2434c72d5..e2a8c4c28 100644 --- a/src/demuxers/demux_asf.c +++ b/src/demuxers/demux_asf.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_asf.c,v 1.129 2003/09/13 11:50:06 tmattern Exp $ + * $Id: demux_asf.c,v 1.130 2003/10/06 15:46:20 mroi Exp $ * * demultiplexer for asf streams * @@ -313,9 +313,11 @@ static void asf_send_audio_header (demux_asf_t *this, int stream) { this->audio_fifo->put (this->audio_fifo, buf); } +#if 0 static unsigned long str2ulong(unsigned char *str) { return ( str[0] | (str[1]<<8) | (str[2]<<16) | (str[3]<<24) ); } +#endif static void asf_send_video_header (demux_asf_t *this, int stream) { @@ -607,15 +609,6 @@ static void asf_reorder(demux_asf_t *this, uint8_t *src, int len){ free(dst); } -static void hexdump (unsigned char *data, int len, xine_t *xine) { - int i; - - for (i = 0; i < len; i++) - printf("%02x ", data[i]); - printf("\n"); - -} - /* redefine abs as macro to handle 64-bit diffs. i guess llabs may not be available everywhere */ #define abs(x) ( ((x)<0) ? -(x) : (x) ) |
