Commit 534553c6 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* src/input/stream.c

  - disable stream_ReadLine debug.
* ALL:
  - added a new demux2 module to handle Kasenna MediaBase 
    metadata files. These are application/x-sgimb masked
    'mpeg' files on the web. They are in reality mostly constructors
    for rtsp links. The reference to SGI is because the MediaBase
    solutions originate from SGI.
parent 78726fda
...@@ -892,7 +892,7 @@ AX_ADD_PLUGINS([trivial_channel_mixer headphone_channel_mixer]) ...@@ -892,7 +892,7 @@ AX_ADD_PLUGINS([trivial_channel_mixer headphone_channel_mixer])
AX_ADD_PLUGINS([trivial_mixer spdif_mixer float32_mixer]) AX_ADD_PLUGINS([trivial_mixer spdif_mixer float32_mixer])
AX_ADD_PLUGINS([aout_file]) AX_ADD_PLUGINS([aout_file])
AX_ADD_PLUGINS([i420_rgb i420_yuy2 i422_yuy2 i420_ymga]) AX_ADD_PLUGINS([i420_rgb i420_yuy2 i422_yuy2 i420_ymga])
AX_ADD_PLUGINS([id3 m3u playlist export]) AX_ADD_PLUGINS([id3 m3u playlist export sgimb])
AX_ADD_PLUGINS([rawvideo]) AX_ADD_PLUGINS([rawvideo])
AX_ADD_PLUGINS([wav araw demuxdump demuxsub adpcm a52sys dtssys au]) AX_ADD_PLUGINS([wav araw demuxdump demuxsub adpcm a52sys dtssys au])
AX_ADD_PLUGINS([access_file access_udp access_tcp access_http ipv4 access_mms]) AX_ADD_PLUGINS([access_file access_udp access_tcp access_http ipv4 access_mms])
......
...@@ -20,3 +20,4 @@ SOURCES_dvdnav = dvdnav.c ...@@ -20,3 +20,4 @@ SOURCES_dvdnav = dvdnav.c
SOURCES_mod = mod.c SOURCES_mod = mod.c
SOURCES_pva = pva.c SOURCES_pva = pva.c
SOURCES_aiff = aiff.c SOURCES_aiff = aiff.c
SOURCES_sgimb = sgimb.c
This diff is collapsed.
...@@ -44,7 +44,7 @@ char *stream_ReadLine( stream_t *s ) ...@@ -44,7 +44,7 @@ char *stream_ReadLine( stream_t *s )
int i_data; int i_data;
int i = 0; int i = 0;
i_data = stream_Peek( s, &p_data, MAX_LINE ); i_data = stream_Peek( s, &p_data, MAX_LINE );
msg_Dbg( s, "i_data %d", i_data );
while( i < i_data && p_data[i] != '\n' ) while( i < i_data && p_data[i] != '\n' )
{ {
i++; i++;
...@@ -63,7 +63,7 @@ char *stream_ReadLine( stream_t *s ) ...@@ -63,7 +63,7 @@ char *stream_ReadLine( stream_t *s )
} }
i = stream_Read( s, p_line, i + 1 ); i = stream_Read( s, p_line, i + 1 );
p_line[ i - 1 ] = '\0'; p_line[ i - 1 ] = '\0';
msg_Dbg( s, "found %d chars long line", i );
return p_line; return p_line;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment