From 853f236b368079ab1d4b5b1720de24c530806b80 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 19 Jan 2004 11:44:12 +0000 Subject: [PATCH] removing ending punctuation dots Original commit message from CVS: removing ending punctuation dots --- ChangeLog | 16 ++++++++ gst/elements/gstfilesink.c | 2 +- gst/elements/gstfilesrc.c | 2 +- gst/elements/gstmultidisksrc.c | 2 +- gst/elements/gstmultifilesrc.c | 2 +- gst/elements/gstpipefilter.c | 12 ++---- gst/gsterror.c | 80 +++++++++++++++++++------------------- plugins/elements/gstfilesink.c | 2 +- plugins/elements/gstfilesrc.c | 2 +- plugins/elements/gstmultidisksrc.c | 2 +- plugins/elements/gstmultifilesrc.c | 2 +- plugins/elements/gstpipefilter.c | 12 ++---- 12 files changed, 72 insertions(+), 64 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1289800..f68fb85 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,21 @@ 2004-01-19 Thomas Vander Stichele + * gst/gsterror.c: (_gst_core_errors_init), + (_gst_library_errors_init), (_gst_resource_errors_init), + (_gst_stream_errors_init): + remove ending punctuation dots + +2004-01-19 Thomas Vander Stichele + + * gst/elements/gstfilesink.c: (gst_filesink_open_file): + * gst/elements/gstfilesrc.c: (gst_filesrc_get_read): + * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file): + * gst/elements/gstpipefilter.c: (gst_pipefilter_get), + (gst_pipefilter_chain), (gst_pipefilter_open_file): + use GST_ERROR_SYSTEM + +2004-01-19 Thomas Vander Stichele + * gst/gstelement.c: (gst_element_error_printf), (gst_element_error_extended): * gst/gstelement.h: diff --git a/gst/elements/gstfilesink.c b/gst/elements/gstfilesink.c index d726073..aeb2d33 100644 --- a/gst/elements/gstfilesink.c +++ b/gst/elements/gstfilesink.c @@ -242,7 +242,7 @@ gst_filesink_open_file (GstFileSink *sink) if (sink->file == NULL) { gst_element_error (sink, RESOURCE, OPEN_WRITE, (_("Could not open file \"%s\" for writing"), sink->filename), - ("system error: %s", strerror (errno))); + GST_ERROR_SYSTEM); return FALSE; } diff --git a/gst/elements/gstfilesrc.c b/gst/elements/gstfilesrc.c index 6e14f42..78d1a9f 100644 --- a/gst/elements/gstfilesrc.c +++ b/gst/elements/gstfilesrc.c @@ -642,7 +642,7 @@ gst_filesrc_get_read (GstFileSrc *src) if (ret < 0){ gst_element_error (src, RESOURCE, READ, NULL, - ("system error: %s", strerror (errno))); + GST_ERROR_SYSTEM); return NULL; } if (ret < readsize) { diff --git a/gst/elements/gstmultidisksrc.c b/gst/elements/gstmultidisksrc.c index 9d5f1e5..da788c2 100644 --- a/gst/elements/gstmultidisksrc.c +++ b/gst/elements/gstmultidisksrc.c @@ -242,7 +242,7 @@ gboolean gst_multidisksrc_open_file (GstMultiDiskSrc *src, GstPad *srcpad) if (src->fd < 0) { gst_element_error (src, RESOURCE, OPEN_READ, (_("Could not open file \"%s\" for reading"), src->currentfilename), - ("system error: %s", strerror (errno))); + GST_ERROR_SYSTEM); return FALSE; } else { diff --git a/gst/elements/gstmultifilesrc.c b/gst/elements/gstmultifilesrc.c index 9d5f1e5..da788c2 100644 --- a/gst/elements/gstmultifilesrc.c +++ b/gst/elements/gstmultifilesrc.c @@ -242,7 +242,7 @@ gboolean gst_multidisksrc_open_file (GstMultiDiskSrc *src, GstPad *srcpad) if (src->fd < 0) { gst_element_error (src, RESOURCE, OPEN_READ, (_("Could not open file \"%s\" for reading"), src->currentfilename), - ("system error: %s", strerror (errno))); + GST_ERROR_SYSTEM); return FALSE; } else { diff --git a/gst/elements/gstpipefilter.c b/gst/elements/gstpipefilter.c index 1f5d1b6..04ff134 100644 --- a/gst/elements/gstpipefilter.c +++ b/gst/elements/gstpipefilter.c @@ -169,8 +169,7 @@ gst_pipefilter_get (GstPad *pad) readbytes = read(pipefilter->fdout[0], GST_BUFFER_DATA(newbuf), pipefilter->bytes_per_read); GST_DEBUG ("read %ld bytes", readbytes); if (readbytes < 0) { - gst_element_error (pipefilter, RESOURCE, READ, - NULL, ("system error: %s", strerror (errno))); + gst_element_error (pipefilter, RESOURCE, READ, NULL, GST_ERROR_SYSTEM); return NULL; } /* if we didn't get as many bytes as we asked for, we're at EOF */ @@ -213,8 +212,7 @@ gst_pipefilter_chain (GstPad *pad,GstData *_data) writebytes = write(pipefilter->fdin[1],data,size); GST_DEBUG ("written %ld bytes", writebytes); if (writebytes < 0) { - gst_element_error (pipefilter, RESOURCE, WRITE, - NULL, ("system error: %s", strerror (errno))); + gst_element_error (pipefilter, RESOURCE, WRITE, NULL, GST_ERROR_SYSTEM); return; } gst_buffer_unref(buf); @@ -269,8 +267,7 @@ gst_pipefilter_open_file (GstPipefilter *src) if((src->childpid = fork()) == -1) { - gst_element_error (src, RESOURCE, TOO_LAZY, - NULL, ("system error: %s", strerror (errno))); + gst_element_error (src, RESOURCE, TOO_LAZY, NULL, GST_ERROR_SYSTEM); return FALSE; } @@ -283,8 +280,7 @@ gst_pipefilter_open_file (GstPipefilter *src) dup2(src->fdout[1], STDOUT_FILENO); /* set the childs output stream */ execvp(src->command[0], &src->command[0]); /* will only be reached if execvp has an error */ - gst_element_error (src, RESOURCE, TOO_LAZY, - NULL, ("system error: %s", strerror (errno))); + gst_element_error (src, RESOURCE, TOO_LAZY, NULL, GST_ERROR_SYSTEM); return FALSE; } diff --git a/gst/gsterror.c b/gst/gsterror.c index 9bf2a5b..9e8d25f 100644 --- a/gst/gsterror.c +++ b/gst/gsterror.c @@ -41,30 +41,30 @@ static gchar ** _gst_core_errors_init () t = g_new0 (gchar *, GST_CORE_ERROR_NUM_ERRORS); TABLE (t, CORE, FAILED, - N_("GStreamer encountered a general core library error.")); + N_("GStreamer encountered a general core library error")); TABLE (t, CORE, TOO_LAZY, N_("GStreamer developers were too lazy to assign an error code " - "to this error. Please file a bug.")); + "to this error. Please file a bug")); TABLE (t, CORE, NOT_IMPLEMENTED, - N_("Internal GStreamer error: code not implemented. File a bug.")); + N_("Internal GStreamer error: code not implemented. File a bug")); TABLE (t, CORE, STATE_CHANGE, - N_("Internal GStreamer error: state change failed. File a bug.")); + N_("Internal GStreamer error: state change failed. File a bug")); TABLE (t, CORE, PAD, - N_("Internal GStreamer error: pad problem. File a bug.")); + N_("Internal GStreamer error: pad problem. File a bug")); TABLE (t, CORE, THREAD, - N_("Internal GStreamer error: thread problem. File a bug.")); + N_("Internal GStreamer error: thread problem. File a bug")); TABLE (t, CORE, SCHEDULER, - N_("Internal GStreamer error: scheduler problem. File a bug.")); + N_("Internal GStreamer error: scheduler problem. File a bug")); TABLE (t, CORE, NEGOTIATION, - N_("Internal GStreamer error: negotiation problem. File a bug.")); + N_("Internal GStreamer error: negotiation problem. File a bug")); TABLE (t, CORE, EVENT, - N_("Internal GStreamer error: event problem. File a bug.")); + N_("Internal GStreamer error: event problem. File a bug")); TABLE (t, CORE, SEEK, - N_("Internal GStreamer error: seek problem. File a bug.")); + N_("Internal GStreamer error: seek problem. File a bug")); TABLE (t, CORE, CAPS, - N_("Internal GStreamer error: caps problem. File a bug.")); + N_("Internal GStreamer error: caps problem. File a bug")); TABLE (t, CORE, TAG, - N_("Internal GStreamer error: tag problem. File a bug.")); + N_("Internal GStreamer error: tag problem. File a bug")); return t; } @@ -77,16 +77,16 @@ static gchar ** _gst_library_errors_init () t = g_new0 (gchar *, GST_LIBRARY_ERROR_NUM_ERRORS); TABLE (t, LIBRARY, FAILED, - N_("GStreamer encountered a general supporting library error.")); + N_("GStreamer encountered a general supporting library error")); TABLE (t, LIBRARY, TOO_LAZY, N_("GStreamer developers were too lazy to assign an error code " - "to this error. Please file a bug.")); + "to this error. Please file a bug")); TABLE (t, LIBRARY, INIT, - N_("Could not initialize supporting library.")); + N_("Could not initialize supporting library")); TABLE (t, LIBRARY, SHUTDOWN, - N_("Could not close supporting library.")); + N_("Could not close supporting library")); TABLE (t, LIBRARY, SETTINGS, - N_("Could not close supporting library.")); + N_("Could not close supporting library")); return t; } @@ -99,32 +99,32 @@ static gchar ** _gst_resource_errors_init () t = g_new0 (gchar *, GST_RESOURCE_ERROR_NUM_ERRORS); TABLE (t, RESOURCE, FAILED, - N_("GStreamer encountered a general supporting library error.")); + N_("GStreamer encountered a general supporting library error")); TABLE (t, RESOURCE, TOO_LAZY, N_("GStreamer developers were too lazy to assign an error code " - "to this error. Please file a bug.")); + "to this error. Please file a bug")); TABLE (t, RESOURCE, NOT_FOUND, - N_("Resource not found.")); + N_("Resource not found")); TABLE (t, RESOURCE, BUSY, - N_("Resource busy or not available.")); + N_("Resource busy or not available")); TABLE (t, RESOURCE, OPEN_READ, - N_("Could not open resource for reading.")); + N_("Could not open resource for reading")); TABLE (t, RESOURCE, OPEN_WRITE, - N_("Could not open resource for writing.")); + N_("Could not open resource for writing")); TABLE (t, RESOURCE, OPEN_READ_WRITE, - N_("Could not open resource for reading and writing.")); + N_("Could not open resource for reading and writing")); TABLE (t, RESOURCE, CLOSE, - N_("Could not close resource.")); + N_("Could not close resource")); TABLE (t, RESOURCE, READ, - N_("Could not read from resource.")); + N_("Could not read from resource")); TABLE (t, RESOURCE, WRITE, - N_("Could not write to resource.")); + N_("Could not write to resource")); TABLE (t, RESOURCE, SEEK, - N_("Could not perform seek on resource.")); + N_("Could not perform seek on resource")); TABLE (t, RESOURCE, SYNC, - N_("Could not synchronize on resource.")); + N_("Could not synchronize on resource")); TABLE (t, RESOURCE, SETTINGS, - N_("Could not get/set settings from/on resource.")); + N_("Could not get/set settings from/on resource")); return t; } @@ -137,27 +137,27 @@ static gchar ** _gst_stream_errors_init () t = g_new0 (gchar *, GST_STREAM_ERROR_NUM_ERRORS); TABLE (t, STREAM, FAILED, - N_("GStreamer encountered a general supporting library error.")); + N_("GStreamer encountered a general supporting library error")); TABLE (t, STREAM, TOO_LAZY, N_("GStreamer developers were too lazy to assign an error code " - "to this error. Please file a bug.")); + "to this error. Please file a bug")); TABLE (t, STREAM, NOT_IMPLEMENTED, N_("Element doesn't implement handling of this stream. " - "Please file a bug.")); + "Please file a bug")); TABLE (t, STREAM, TYPE_NOT_FOUND, - N_("Could not determine type of stream.")); + N_("Could not determine type of stream")); TABLE (t, STREAM, WRONG_TYPE, - N_("The stream is of a different type than handled by this element.")); + N_("The stream is of a different type than handled by this element")); TABLE (t, STREAM, DECODE, - N_("Could not decode stream.")); + N_("Could not decode stream")); TABLE (t, STREAM, ENCODE, - N_("Could not encode stream.")); + N_("Could not encode stream")); TABLE (t, STREAM, DEMUX, - N_("Could not demultiplex stream.")); + N_("Could not demultiplex stream")); TABLE (t, STREAM, MUX, - N_("Could not multiplex stream.")); + N_("Could not multiplex stream")); TABLE (t, STREAM, FORMAT, - N_("Stream is of the wrong format.")); + N_("Stream is of the wrong format")); return t; } diff --git a/plugins/elements/gstfilesink.c b/plugins/elements/gstfilesink.c index d726073..aeb2d33 100644 --- a/plugins/elements/gstfilesink.c +++ b/plugins/elements/gstfilesink.c @@ -242,7 +242,7 @@ gst_filesink_open_file (GstFileSink *sink) if (sink->file == NULL) { gst_element_error (sink, RESOURCE, OPEN_WRITE, (_("Could not open file \"%s\" for writing"), sink->filename), - ("system error: %s", strerror (errno))); + GST_ERROR_SYSTEM); return FALSE; } diff --git a/plugins/elements/gstfilesrc.c b/plugins/elements/gstfilesrc.c index 6e14f42..78d1a9f 100644 --- a/plugins/elements/gstfilesrc.c +++ b/plugins/elements/gstfilesrc.c @@ -642,7 +642,7 @@ gst_filesrc_get_read (GstFileSrc *src) if (ret < 0){ gst_element_error (src, RESOURCE, READ, NULL, - ("system error: %s", strerror (errno))); + GST_ERROR_SYSTEM); return NULL; } if (ret < readsize) { diff --git a/plugins/elements/gstmultidisksrc.c b/plugins/elements/gstmultidisksrc.c index 9d5f1e5..da788c2 100644 --- a/plugins/elements/gstmultidisksrc.c +++ b/plugins/elements/gstmultidisksrc.c @@ -242,7 +242,7 @@ gboolean gst_multidisksrc_open_file (GstMultiDiskSrc *src, GstPad *srcpad) if (src->fd < 0) { gst_element_error (src, RESOURCE, OPEN_READ, (_("Could not open file \"%s\" for reading"), src->currentfilename), - ("system error: %s", strerror (errno))); + GST_ERROR_SYSTEM); return FALSE; } else { diff --git a/plugins/elements/gstmultifilesrc.c b/plugins/elements/gstmultifilesrc.c index 9d5f1e5..da788c2 100644 --- a/plugins/elements/gstmultifilesrc.c +++ b/plugins/elements/gstmultifilesrc.c @@ -242,7 +242,7 @@ gboolean gst_multidisksrc_open_file (GstMultiDiskSrc *src, GstPad *srcpad) if (src->fd < 0) { gst_element_error (src, RESOURCE, OPEN_READ, (_("Could not open file \"%s\" for reading"), src->currentfilename), - ("system error: %s", strerror (errno))); + GST_ERROR_SYSTEM); return FALSE; } else { diff --git a/plugins/elements/gstpipefilter.c b/plugins/elements/gstpipefilter.c index 1f5d1b6..04ff134 100644 --- a/plugins/elements/gstpipefilter.c +++ b/plugins/elements/gstpipefilter.c @@ -169,8 +169,7 @@ gst_pipefilter_get (GstPad *pad) readbytes = read(pipefilter->fdout[0], GST_BUFFER_DATA(newbuf), pipefilter->bytes_per_read); GST_DEBUG ("read %ld bytes", readbytes); if (readbytes < 0) { - gst_element_error (pipefilter, RESOURCE, READ, - NULL, ("system error: %s", strerror (errno))); + gst_element_error (pipefilter, RESOURCE, READ, NULL, GST_ERROR_SYSTEM); return NULL; } /* if we didn't get as many bytes as we asked for, we're at EOF */ @@ -213,8 +212,7 @@ gst_pipefilter_chain (GstPad *pad,GstData *_data) writebytes = write(pipefilter->fdin[1],data,size); GST_DEBUG ("written %ld bytes", writebytes); if (writebytes < 0) { - gst_element_error (pipefilter, RESOURCE, WRITE, - NULL, ("system error: %s", strerror (errno))); + gst_element_error (pipefilter, RESOURCE, WRITE, NULL, GST_ERROR_SYSTEM); return; } gst_buffer_unref(buf); @@ -269,8 +267,7 @@ gst_pipefilter_open_file (GstPipefilter *src) if((src->childpid = fork()) == -1) { - gst_element_error (src, RESOURCE, TOO_LAZY, - NULL, ("system error: %s", strerror (errno))); + gst_element_error (src, RESOURCE, TOO_LAZY, NULL, GST_ERROR_SYSTEM); return FALSE; } @@ -283,8 +280,7 @@ gst_pipefilter_open_file (GstPipefilter *src) dup2(src->fdout[1], STDOUT_FILENO); /* set the childs output stream */ execvp(src->command[0], &src->command[0]); /* will only be reached if execvp has an error */ - gst_element_error (src, RESOURCE, TOO_LAZY, - NULL, ("system error: %s", strerror (errno))); + gst_element_error (src, RESOURCE, TOO_LAZY, NULL, GST_ERROR_SYSTEM); return FALSE; } -- 2.7.4