From 2a0ae1ce1d45d27124660bb1d0496bc126475777 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Fri, 10 Sep 2010 13:33:16 -0300 Subject: [PATCH] jpegformat: Fix element description Use saner categories for jifmux/jpegparse elements --- gst/jpegformat/gstjifmux.c | 6 +++--- gst/jpegformat/gstjpegparse.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gst/jpegformat/gstjifmux.c b/gst/jpegformat/gstjifmux.c index 010f40ab69..d65bb4cab9 100644 --- a/gst/jpegformat/gstjifmux.c +++ b/gst/jpegformat/gstjifmux.c @@ -136,9 +136,9 @@ gst_jif_mux_base_init (gpointer g_class) gst_element_class_add_pad_template (element_class, gst_static_pad_template_get (&gst_jif_mux_sink_pad_template)); gst_element_class_set_details_simple (element_class, - "JPEG stream parser", - "Codec/Parser/Video", - "Parse JPEG images into single-frame buffers", + "JPEG stream muxer", + "Video/Muxer", + "Remuxes JPEG images with markers and tags", "Arnout Vandecappelle (Essensium/Mind) "); } diff --git a/gst/jpegformat/gstjpegparse.c b/gst/jpegformat/gstjpegparse.c index f3096b27c9..069b84c018 100644 --- a/gst/jpegformat/gstjpegparse.c +++ b/gst/jpegformat/gstjpegparse.c @@ -142,7 +142,7 @@ gst_jpeg_parse_base_init (gpointer g_class) gst_static_pad_template_get (&gst_jpeg_parse_sink_pad_template)); gst_element_class_set_details_simple (element_class, "JPEG stream parser", - "Codec/Parser/Video", + "Video/Parser", "Parse JPEG images into single-frame buffers", "Arnout Vandecappelle (Essensium/Mind) "); }