reverting error patch before making a branch. BRANCH-ERROR-ROOT
authorThomas Vander Stichele <thomas@apestaart.org>
Tue, 16 Sep 2003 10:00:02 +0000 (10:00 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Tue, 16 Sep 2003 10:00:02 +0000 (10:00 +0000)
Original commit message from CVS:
reverting error patch before making a branch.

24 files changed:
ext/aalib/gstaasink.c
ext/dv/gstdvdec.c
ext/esd/esdmon.c
ext/esd/esdsink.c
ext/flac/gstflacdec.c
ext/flac/gstflacenc.c
ext/ladspa/gstladspa.c
ext/mikmod/gstmikmod.c
ext/raw1394/gstdv1394src.c
ext/speex/gstspeexenc.c
gst/auparse/gstauparse.c
gst/avi/gstavidemux.c
gst/avi/gstavimux.c
gst/flx/gstflxdec.c
gst/goom/gstgoom.c
gst/monoscope/gstmonoscope.c
gst/smpte/gstsmpte.c
gst/videocrop/gstvideocrop.c
gst/wavenc/gstwavenc.c
gst/wavparse/gstwavparse.c
sys/oss/gstosselement.c
sys/oss/gstossgst.c
sys/oss/gstosssink.c
sys/oss/gstosssrc.c

index 0ba7e4d..537cfd5 100644 (file)
@@ -489,9 +489,8 @@ gst_aasink_open (GstAASink *aasink)
 
   aasink->context = aa_autoinit (&aasink->ascii_surf);
   if (aasink->context == NULL) {
-    gst_element_gerror(GST_ELEMENT (aasink), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup ("opening aalib context"));
+    gst_element_error (GST_ELEMENT (aasink), 
+                   g_strdup("opening aalib context"));
     return FALSE;
   }
   aa_autoinitkbd(aasink->context, 0);
index a33b782..e28f836 100644 (file)
@@ -798,9 +798,7 @@ gst_dvdec_loop (GstElement *element)
     }
     /* oops list exhausted an nothing was found... */
     if (!trylist) {
-      gst_element_gerror(element, GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("could not negotiate"));
+      gst_element_error (element, "could not negotiate");
       return;
     }
   }
index ab85c15..ae8d4fd 100644 (file)
@@ -266,9 +266,7 @@ gst_esdmon_get (GstPad *pad)
                           "channels",   GST_PROPS_INT (esdmon->channels)
                    )) <= 0)
     {
-      gst_element_gerror(GST_ELEMENT (esdmon), GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("could not set caps"));
+      gst_element_error (GST_ELEMENT (esdmon), "could not set caps");
       return NULL;
     }
   }
index f9be01c..f455738 100644 (file)
@@ -266,9 +266,7 @@ gst_esdsink_chain (GstPad *pad, GstBuffer *buf)
   esdsink = GST_ESDSINK (gst_pad_get_parent (pad));
 
   if (!esdsink->negotiated) {
-    gst_element_gerror(GST_ELEMENT (esdsink), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf("not negotiated"));
+    gst_element_error (GST_ELEMENT (esdsink), "not negotiated");
     goto done;
   }
 
index 5431a84..c11be9f 100644 (file)
@@ -291,9 +291,7 @@ gst_flacdec_error_callback (const FLAC__SeekableStreamDecoder *decoder,
 
   GST_DEBUG (error);
                                  
-  gst_element_gerror(GST_ELEMENT (flacdec), GST_ERROR_UNKNOWN,
-    g_strdup ("unconverted error, file a bug"),
-    g_strdup_printf(error));
+  gst_element_error (GST_ELEMENT (flacdec), error);
 }
 
 static FLAC__SeekableStreamDecoderSeekStatus   
index e217d9c..ef9e538 100644 (file)
@@ -512,9 +512,8 @@ gst_flacenc_chain (GstPad *pad, GstBuffer *buf)
   }
 
   if (!flacenc->negotiated) {
-    gst_element_gerror(GST_ELEMENT (flacenc), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf("format not negotiated"));
+    gst_element_error (GST_ELEMENT (flacenc),
+                   "format not negotiated");
     return;
   }
 
@@ -531,9 +530,8 @@ gst_flacenc_chain (GstPad *pad, GstBuffer *buf)
     gst_flacenc_set_metadata (flacenc, flacenc->metadata);
     state = FLAC__seekable_stream_encoder_init (flacenc->encoder);
     if (state != FLAC__STREAM_ENCODER_OK) {
-      gst_element_gerror(GST_ELEMENT (flacenc), GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("could not initialize encoder (wrong parameters?)"));
+      gst_element_error (GST_ELEMENT (flacenc),
+                        "could not initialize encoder (wrong parameters?)");
       return;
     }
   }
@@ -567,9 +565,8 @@ gst_flacenc_chain (GstPad *pad, GstBuffer *buf)
   flacenc->data = NULL;
 
   if (!res) {
-    gst_element_gerror(GST_ELEMENT (flacenc), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf ("encoding error"));
+    gst_element_error (GST_ELEMENT (flacenc),
+                        "encoding error");
   }
 }
 
index 2611603..460bdf1 100644 (file)
@@ -701,9 +701,7 @@ gst_ladspa_loop (GstElement *element)
   }
 
   if (!ladspa->bufpool) {
-    gst_element_gerror(element, "Caps were never set, GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf(bailing..."));
+    gst_element_error (element, "Caps were never set, bailing...");
     return;
   }
 
@@ -793,9 +791,7 @@ gst_ladspa_chain (GstPad *pad, GstBuffer *buffer_in)
   g_return_if_fail (GST_IS_BUFFER (buffer_in));
   
   if (!ladspa->bufpool) {
-    gst_element_gerror((GstElement*)ladspa, "Caps were never set, GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf(bailing..."));
+    gst_element_error ((GstElement*)ladspa, "Caps were never set, bailing...");
     return;
   }
 
index 7767bcd..6ef507c 100644 (file)
@@ -310,9 +310,8 @@ gst_mikmod_loop (GstElement *element)
   
   if (!GST_PAD_CAPS (mikmod->srcpad)) {
     if (gst_mikmod_negotiate (mikmod) <= 0) {
-      gst_element_gerror(GST_ELEMENT (mikmod), GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("Failed to negotiate with next element in mikmod"));
+      gst_element_error (GST_ELEMENT (mikmod),
+                        "Failed to negotiate with next element in mikmod");
       return;
     }
   }
index 26ba4f1..97b2989 100644 (file)
@@ -232,9 +232,7 @@ int gst_dv1394src_iso_receive(raw1394handle_t handle,int channel,size_t len,quad
                                       "format", GST_PROPS_STRING("PAL"),
                                       NULL)
               ) <= 0) {
-               gst_element_gerror(GST_ELEMENT(dv1394src), GST_ERROR_UNKNOWN,
-                 g_strdup ("unconverted error, file a bug"),
-                 g_strdup_printf("Could not set source caps for PAL"));
+               gst_element_error (GST_ELEMENT(dv1394src), "Could not set source caps for PAL");
                 return 0;
               }
             } else {
@@ -246,18 +244,14 @@ int gst_dv1394src_iso_receive(raw1394handle_t handle,int channel,size_t len,quad
                                       "format", GST_PROPS_STRING ("NTSC"),
                                       NULL)
               ) <= 0) {
-                gst_element_gerror(GST_ELEMENT(dv1394src), GST_ERROR_UNKNOWN,
-                  g_strdup ("unconverted error, file a bug"),
-                  g_strdup_printf("Could not set source caps for NTSC"));
+                gst_element_error (GST_ELEMENT(dv1394src), "Could not set source caps for NTSC");
                 return 0;
               }
             }
 
             dv1394src->pool = gst_buffer_pool_get_default( dv1394src->frameSize, N_BUFFERS_IN_POOL );
             if (dv1394src->pool == NULL) {
-              gst_element_gerror(GST_ELEMENT(dv1394src), GST_ERROR_UNKNOWN,
-                g_strdup ("unconverted error, file a bug"),
-                g_strdup_printf("gst_buffer_pool_get_default returned NULL"));
+              gst_element_error (GST_ELEMENT(dv1394src), "gst_buffer_pool_get_default returned NULL");
             }
           }
   
index 188a729..dd4cb45 100644 (file)
@@ -176,9 +176,7 @@ gst_speexenc_chain (GstPad *pad, GstBuffer *buf)
                        "channels", GST_PROPS_INT (1)
                      )))
     {
-      gst_element_gerror(GST_ELEMENT (speexenc), GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("could not negotiate"));
+      gst_element_error (GST_ELEMENT (speexenc), "could not negotiate");
       return;
     }
   }
index 075f5f4..422ee1b 100644 (file)
@@ -287,9 +287,7 @@ gst_auparse_chain (GstPad *pad, GstBuffer *buf)
 
     if (gst_pad_try_set_caps (auparse->srcpad, tempcaps) <= 0) {
       gst_buffer_unref (buf);
-      gst_element_gerror(GST_ELEMENT (auparse), GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("could not set audio caps"));
+      gst_element_error (GST_ELEMENT (auparse), "could not set audio caps");
       return;
     }
 
index e79d707..ed60593 100644 (file)
@@ -1691,9 +1691,7 @@ gst_avi_demux_loop (GstElement *element)
     case GST_AVI_DEMUX_START:
       if (chunk.id != GST_RIFF_TAG_RIFF && 
           chunk.type != GST_RIFF_RIFF_AVI) {
-        gst_element_gerror(element, GST_ERROR_UNKNOWN,
-          g_strdup ("unconverted error, file a bug"),
-          g_strdup_printf("This doesn't appear to be an AVI file %08x %08x", chunk.id, chunk.type));
+        gst_element_error (element, "This doesn't appear to be an AVI file %08x %08x", chunk.id, chunk.type);
        return;
       }
       avi_demux->state = GST_AVI_DEMUX_HEADER;
index 68105d9..4a980a1 100644 (file)
@@ -1062,9 +1062,7 @@ gst_avimux_stop_file (GstAviMux *avimux)
       if (avimux->audio_time) {
         avimux->auds_hdr.rate = (GST_SECOND * avimux->audio_size) / avimux->audio_time;
       } else {
-        gst_element_gerror(GST_ELEMENT (avimux), GST_ERROR_UNKNOWN,
-          g_strdup ("unconverted error, file a bug"),
-          g_strdup ("Audio stream availablebut no audio data transferred (or data with invalid timestamps). Resulting AVI will be corrupt"));
+        gst_element_error (GST_ELEMENT (avimux), "Audio stream available, but no audio data transferred (or data with invalid timestamps). Resulting AVI will be corrupt");
         avimux->auds_hdr.rate = 0;
       }
       avimux->auds.av_bps = avimux->auds_hdr.rate * avimux->auds_hdr.scale;
index fe20443..c20327a 100644 (file)
@@ -499,9 +499,7 @@ gst_flxdec_loop (GstElement *element)
     if (flxh->type != FLX_MAGICHDR_FLI &&
       flxh->type != FLX_MAGICHDR_FLC &&
       flxh->type != FLX_MAGICHDR_FLX) {
-      gst_element_gerror(element, GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("not a flx file (type %d)\n", flxh->type));
+      gst_element_error (element, "not a flx file (type %d)\n", flxh->type);
       return;
     }
   
index 8a4a5eb..bbf49bb 100644 (file)
@@ -300,9 +300,7 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin)
   }
 
   if (goom->channels == 0) {
-    gst_element_gerror(GST_ELEMENT (goom), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf("sink format not negotiated"));
+    gst_element_error (GST_ELEMENT (goom), "sink format not negotiated");
     goto done;
   }
 
@@ -311,9 +309,7 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin)
 
   if (!goom->srcnegotiated) {
     if (!gst_goom_negotiate_default (goom)) {
-      gst_element_gerror(GST_ELEMENT (goom), GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("could not negotiate src format"));
+      gst_element_error (GST_ELEMENT (goom), "could not negotiate src format");
       goto done;
     }
   }
index 0b94604..9eb8bb4 100644 (file)
@@ -285,9 +285,7 @@ gst_monoscope_chain (GstPad *pad, GstBuffer *bufin)
     GST_DEBUG ("making new pad");
     if (!GST_PAD_CAPS (monoscope->srcpad)) {
       if (gst_monoscope_negotiate (monoscope) <= 0) {
-        gst_element_gerror(GST_ELEMENT (monoscope), GST_ERROR_UNKNOWN,
-          g_strdup ("unconverted error, file a bug"),
-          g_strdup_printf("could not set caps"));
+        gst_element_error (GST_ELEMENT (monoscope), "could not set caps");
         return;
       }
     }
index 9b203fe..bf042e4 100644 (file)
@@ -364,9 +364,7 @@ gst_smpte_loop (GstElement *element)
                       "framerate", GST_PROPS_FLOAT (smpte->fps)
                    )))
       {
-        gst_element_gerror(element, GST_ERROR_UNKNOWN,
-          g_strdup ("unconverted error, file a bug"),
-          g_strdup_printf("cannot set caps"));
+        gst_element_error (element, "cannot set caps");
         return;
       }
     }
index 54702e5..d96061a 100644 (file)
@@ -380,9 +380,7 @@ gst_video_crop_chain (GstPad *pad, GstBuffer *buffer)
                                          "framerate", GST_PROPS_FLOAT (video_crop->fps)
                                       )) <= 0)
     {
-      gst_element_gerror(GST_ELEMENT (video_crop), GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("could not negotiate pads"));
+      gst_element_error (GST_ELEMENT (video_crop), "could not negotiate pads");
       return;
     }
   }
index 08f2c99..2dde7c6 100644 (file)
@@ -322,9 +322,7 @@ gst_wavenc_chain (GstPad *pad,
 
   if (!wavenc->setup) {
     gst_buffer_unref (buf);
-    gst_element_gerror(GST_ELEMENT (wavenc), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf("encoder not initialised (input is not audio?)"));
+    gst_element_error (GST_ELEMENT (wavenc), "encoder not initialised (input is not audio?)");
     return;
   }
 
index af99512..c2e6063 100644 (file)
@@ -292,16 +292,12 @@ static void wav_new_chunk_callback(GstRiffChunk *chunk, gpointer data)
        break;
 
       default:
-       gst_element_gerror(GST_ELEMENT (wavparse), GST_ERROR_UNKNOWN,
-         g_strdup ("unconverted error, file a bug"),
-         g_strdup_printf("wavparse: format %d not handled", wavparse->format));
+       gst_element_error (GST_ELEMENT (wavparse), "wavparse: format %d not handled", wavparse->format);
        return;
     }
 
     if (gst_pad_try_set_caps (wavparse->srcpad, caps) <= 0) {
-      gst_element_gerror(GST_ELEMENT (wavparse), GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("Could not set caps"));
+      gst_element_error (GST_ELEMENT (wavparse), "Could not set caps");
       return;
     }
 
index 6ad1c21..f437998 100644 (file)
@@ -429,43 +429,37 @@ gst_osselement_open_audio (GstOssElement *oss)
   if (oss->fd < 0) {
     switch (errno) {
       case EBUSY:
-       gst_element_gerror(GST_ELEMENT (oss), GST_ERROR_UNKNOWN,
-         g_strdup ("unconverted error, file a bug"),
-         g_strdup_printf("osselement: Unable to open %s (in use ?)",
-                          oss->device));
+       gst_element_error (GST_ELEMENT (oss),
+                          "osselement: Unable to open %s (in use ?)",
+                          oss->device);
        break;
       case EISDIR:
-       gst_element_gerror(GST_ELEMENT (oss), GST_ERROR_UNKNOWN,
-         g_strdup ("unconverted error, file a bug"),
-         g_strdup_printf("osselement: Device %s is a directory",
-                          oss->device));
+       gst_element_error (GST_ELEMENT (oss),
+                          "osselement: Device %s is a directory",
+                          oss->device);
        break;
       case EACCES:
       case ETXTBSY:
-       gst_element_gerror(GST_ELEMENT (oss), GST_ERROR_UNKNOWN,
-         g_strdup ("unconverted error, file a bug"),
-         g_strdup_printf("osselement: Cannot access %s, check permissions",
-                          oss->device));
+       gst_element_error (GST_ELEMENT (oss),
+                          "osselement: Cannot access %s, check permissions",
+                          oss->device);
        break;
       case ENXIO:
       case ENODEV:
       case ENOENT:
-       gst_element_gerror(GST_ELEMENT (oss), GST_ERROR_UNKNOWN,
-         g_strdup ("unconverted error, file a bug"),
-         g_strdup_printf("osselement: Cannot access %s, does it exist ?",
-                          oss->device));
+       gst_element_error (GST_ELEMENT (oss),
+                          "osselement: Cannot access %s, does it exist ?",
+                          oss->device);
        break;
       case EROFS:
-       gst_element_gerror(GST_ELEMENT (oss), GST_ERROR_UNKNOWN,
-         g_strdup ("unconverted error, file a bug"),
-         g_strdup_printf("osselement: Cannot access %s, read-only filesystem ?",
-                          oss->device));
+       gst_element_error (GST_ELEMENT (oss),
+                          "osselement: Cannot access %s, read-only filesystem ?",
+                          oss->device);
       default:
        /* FIXME: strerror is not threadsafe */
-       gst_element_gerror(GST_ELEMENT (oss), GST_ERROR_UNKNOWN,
-         g_strdup ("unconverted error, file a bug"),
-         g_strdup_printf("osselement: Cannot open %s, generic error: %s",
-                          oss->device, strerror (errno)));
+       gst_element_error (GST_ELEMENT (oss),
+                          "osselement: Cannot open %s, generic error: %s",
+                          oss->device, strerror (errno));
        break;
     }
     return FALSE;
index a680518..070c693 100644 (file)
@@ -382,9 +382,7 @@ gst_ossgst_spawn_process (GstOssGst *ossgst)
   if((ossgst->childpid = fork()) == -1)
   {
     perror("fork");
-    gst_element_gerror(GST_ELEMENT(ossgst), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf("forking"));
+    gst_element_error(GST_ELEMENT(ossgst),"forking");
     return FALSE;
   }
   GST_DEBUG ("forked %d", ossgst->childpid);
@@ -417,9 +415,7 @@ gst_ossgst_spawn_process (GstOssGst *ossgst)
 
     /* will only reach if error */
     perror("exec");
-    gst_element_gerror(GST_ELEMENT(ossgst), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf("starting child process"));
+    gst_element_error(GST_ELEMENT(ossgst),"starting child process");
     return FALSE;
 
   }
index eb5203b..067f69c 100644 (file)
@@ -356,9 +356,7 @@ gst_osssink_chain (GstPad *pad, GstBuffer *buf)
 
   if (!GST_OSSELEMENT (osssink)->bps) {
     gst_buffer_unref (buf);
-    gst_element_gerror(GST_ELEMENT (osssink), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf("capsnego was never performed, unknown data type"));
+    gst_element_error (GST_ELEMENT (osssink), "capsnego was never performed, unknown data type");
     return;
   }
 
index 8a5e0bb..c2ff002 100644 (file)
@@ -315,17 +315,13 @@ gst_osssrc_get (GstPad *pad)
     /* nothing was negotiated, we can decide on a format */
     if (!gst_osssrc_negotiate (pad)) {
       gst_buffer_unref (buf);
-      gst_element_gerror(GST_ELEMENT (src), GST_ERROR_UNKNOWN,
-        g_strdup ("unconverted error, file a bug"),
-        g_strdup_printf("could not negotiate format"));
+      gst_element_error (GST_ELEMENT (src), "could not negotiate format");
       return GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
     }
   }
   if (GST_OSSELEMENT (src)->bps == 0) {
     gst_buffer_unref (buf);
-    gst_element_gerror(GST_ELEMENT (src), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf("no format negotiated"));
+    gst_element_error (GST_ELEMENT (src), "no format negotiated");
     return GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
   }
 
@@ -333,10 +329,8 @@ gst_osssrc_get (GstPad *pad)
                     src->buffersize);
   if (readbytes < 0) {
     gst_buffer_unref (buf);
-    gst_element_gerror(GST_ELEMENT (src), GST_ERROR_UNKNOWN,
-      g_strdup ("unconverted error, file a bug"),
-      g_strdup_printf("error reading data (%s)",
-                   strerror (errno)));
+    gst_element_error (GST_ELEMENT (src), "error reading data (%s)",
+                   strerror (errno));
     return GST_BUFFER (gst_event_new (GST_EVENT_INTERRUPT));
   }