Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2003-12-19 18:25:45 +0300
committerThomas Vander Stichele <thomas@apestaart.org>2003-12-19 18:25:45 +0300
commitb0a17df7ea31800fe8379db8edfa87058eded1b3 (patch)
treee0489bef4fca9c18a6f47905d268127ac578c6fb
parent0e86531c8bcecbfd6cc6c48ee2d3c60c8139d1b2 (diff)
minor cosmetic fixesRELEASE-0_7_3MOVE-TO-FDO
Original commit message from CVS: minor cosmetic fixes
-rw-r--r--examples/retag/transcode.c3
-rw-r--r--tests/old/examples/retag/transcode.c3
2 files changed, 4 insertions, 2 deletions
diff --git a/examples/retag/transcode.c b/examples/retag/transcode.c
index c41f96ed8e..07bd64fc17 100644
--- a/examples/retag/transcode.c
+++ b/examples/retag/transcode.c
@@ -4,7 +4,7 @@
* this, it parses the filename and sets artist and title in the ogg file.
* It assumes the filename to be "<artist> - <title>.mp3"
*
- * Run the program as "retag <mp3 file>"
+ * Run the program as "transcode <mp3 file>"
*
* To run this program, you need to have the gst-plugins package (specifically
* the vorbis and mad plugins) installed.
@@ -40,6 +40,7 @@ main (int argc, char *argv[])
title = strstr (artist, " - ");
if (title == NULL) {
g_print ("The format of the mp3 file is invalid.\n");
+ g_print ("It needs to be in the form of artist - title.mp3.\n");
return 1;
}
*title = '\0';
diff --git a/tests/old/examples/retag/transcode.c b/tests/old/examples/retag/transcode.c
index c41f96ed8e..07bd64fc17 100644
--- a/tests/old/examples/retag/transcode.c
+++ b/tests/old/examples/retag/transcode.c
@@ -4,7 +4,7 @@
* this, it parses the filename and sets artist and title in the ogg file.
* It assumes the filename to be "<artist> - <title>.mp3"
*
- * Run the program as "retag <mp3 file>"
+ * Run the program as "transcode <mp3 file>"
*
* To run this program, you need to have the gst-plugins package (specifically
* the vorbis and mad plugins) installed.
@@ -40,6 +40,7 @@ main (int argc, char *argv[])
title = strstr (artist, " - ");
if (title == NULL) {
g_print ("The format of the mp3 file is invalid.\n");
+ g_print ("It needs to be in the form of artist - title.mp3.\n");
return 1;
}
*title = '\0';