[Redbutton-devel] SF.net SVN: redbutton: [97] redbutton-browser/trunk/MHEGStreamPlayer.c
Brought to you by:
skilvington
|
From: <ski...@us...> - 2006-06-12 16:18:36
|
Revision: 97 Author: skilvington Date: 2006-06-12 09:18:28 -0700 (Mon, 12 Jun 2006) ViewCVS: http://svn.sourceforge.net/redbutton/?rev=97&view=rev Log Message: ----------- remove unneeded \n's Modified Paths: -------------- redbutton-browser/trunk/MHEGStreamPlayer.c Modified: redbutton-browser/trunk/MHEGStreamPlayer.c =================================================================== --- redbutton-browser/trunk/MHEGStreamPlayer.c 2006-06-12 12:36:10 UTC (rev 96) +++ redbutton-browser/trunk/MHEGStreamPlayer.c 2006-06-12 16:18:28 UTC (rev 97) @@ -263,7 +263,7 @@ fatal("Unsupported video codec"); if(avcodec_open(video_codec_ctx, codec) < 0) fatal("Unable to open video codec"); - verbose("MHEGStreamPlayer: Video: stream type=%d codec=%s\n", p->video_type, codec->name); + verbose("MHEGStreamPlayer: Video: stream type=%d codec=%s", p->video_type, codec->name); } if(p->audio_pid != -1) @@ -275,7 +275,7 @@ fatal("Unsupported audio codec"); if(avcodec_open(audio_codec_ctx, codec) < 0) fatal("Unable to open audio codec"); - verbose("MHEGStreamPlayer: Audio: stream type=%d codec=%s\n", p->audio_type, codec->name); + verbose("MHEGStreamPlayer: Audio: stream type=%d codec=%s", p->audio_type, codec->name); /* let the audio ouput thread know what the sample rate, etc are */ p->audio_codec = audio_codec_ctx; } @@ -626,7 +626,7 @@ rate = p->audio_codec->sample_rate; channels = p->audio_codec->channels; - verbose("MHEGStreamPlayer: audio params: format=%d rate=%d channels=%d\n", format, rate, channels); + verbose("MHEGStreamPlayer: audio params: format=%d rate=%d channels=%d", format, rate, channels); /* TODO */ /* hmmm... audio_time_base issue? */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |