summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaut Mattern <tmattern@users.sourceforge.net>2003-01-15 00:53:40 +0000
committerThibaut Mattern <tmattern@users.sourceforge.net>2003-01-15 00:53:40 +0000
commit98eb3092ced454c5438289be168bb7cc776ca9ec (patch)
tree9e8ff6699816401fe4bf2dda94ce52531caf834d
parentb988b6fcf961c6e98facd295a38696cc0b8e8868 (diff)
downloadxine-lib-98eb3092ced454c5438289be168bb7cc776ca9ec.tar.gz
xine-lib-98eb3092ced454c5438289be168bb7cc776ca9ec.tar.bz2
Little cleanup
CVS patchset: 3923 CVS date: 2003/01/15 00:53:40
-rw-r--r--src/input/input_mms.c8
-rw-r--r--src/input/mmsh.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/src/input/input_mms.c b/src/input/input_mms.c
index 3a9b0c155..c4ceb0988 100644
--- a/src/input/input_mms.c
+++ b/src/input/input_mms.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: input_mms.c,v 1.32 2003/01/15 00:18:23 tmattern Exp $
+ * $Id: input_mms.c,v 1.33 2003/01/15 00:53:40 tmattern Exp $
*
* mms input plugin based on work from major mms
*/
@@ -103,7 +103,7 @@ static off_t mms_plugin_read (input_plugin_t *this_gen,
off_t n = 0;
#ifdef LOG
- printf ("mms_plugin_read: %lld bytes ...\n",
+ printf ("input_mms: mms_plugin_read: %lld bytes ...\n",
len);
#endif
@@ -130,7 +130,7 @@ static buf_element_t *mms_plugin_read_block (input_plugin_t *this_gen,
int total_bytes;
#ifdef LOG
- printf ("mms_plugin_read_block: %lld bytes...\n",
+ printf ("input_mms: mms_plugin_read_block: %lld bytes...\n",
todo);
#endif
@@ -154,7 +154,7 @@ static off_t mms_plugin_seek (input_plugin_t *this_gen, off_t offset, int origin
off_t dest = this->curpos;
#ifdef LOG
- printf ("mms_plugin_seek: %lld offset, %d origin...\n",
+ printf ("input_mms: mms_plugin_seek: %lld offset, %d origin...\n",
offset, origin);
#endif
diff --git a/src/input/mmsh.c b/src/input/mmsh.c
index e8a9efb3c..5ae797ec5 100644
--- a/src/input/mmsh.c
+++ b/src/input/mmsh.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: mmsh.c,v 1.4 2003/01/14 23:40:56 tmattern Exp $
+ * $Id: mmsh.c,v 1.5 2003/01/15 00:53:40 tmattern Exp $
*
* based on mms.c and specs from avifile
* (http://avifile.sourceforge.net/asf-1.0.htm)
@@ -211,7 +211,7 @@ static ssize_t read_timeout(int fd, void *buf, size_t count) {
}
#ifdef LOG
- /* printf ("mmsh: read completed %d/%d\n", total, count); */
+ /* printf ("libmmsh: read completed %d/%d\n", total, count); */
#endif
return total;
@@ -996,7 +996,7 @@ mmsh_t *mmsh_connect (xine_stream_t *stream, const char *url_, int bandwidth) {
report_progress (stream, 100);
#ifdef LOG
- printf(" mmsh_connect: passed\n" );
+ printf("libmms: mmsh_connect: passed\n" );
#endif
return this;
@@ -1014,7 +1014,7 @@ static int get_media_packet (mmsh_t *this) {
int len;
#ifdef LOG
- printf("this->packet_length: %d\n", this->packet_length);
+ printf("libmms: get_media_packet: this->packet_length: %d\n", this->packet_length);
#endif
if( get_chunk_header(this)) {