97186f2a919532ff51637b6e27283693b4ad59d5
[platform/upstream/gstreamer.git] / subprojects / gst-plugins-base / gst-libs / gst / pbutils / descriptions.c
1 /* GStreamer Plugins Base utils library source/sink/codec description support
2  * Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 /**
21  * SECTION:gstpbutilsdescriptions
22  * @title: Descriptions
23  * @short_description: Provides human-readable descriptions for caps/codecs
24  * and encoder, decoder, URI source and URI sink elements
25  *
26  * The above functions provide human-readable strings for media formats
27  * and decoder/demuxer/depayloader/encoder/muxer/payloader elements for use
28  * in error dialogs or other messages shown to users.
29  *
30  * gst_pb_utils_add_codec_description_to_tag_list() is a utility function
31  * for demuxer and decoder elements to add audio/video codec tags from a
32  * given (fixed) #GstCaps.
33  *
34  */
35
36 #ifdef HAVE_CONFIG_H
37 # include "config.h"
38 #endif
39
40 #include <glib/gi18n-lib.h>
41
42 #include <gst/audio/audio.h>
43 #include <gst/video/video.h>
44
45 #include "pbutils.h"
46 #include "pbutils-private.h"
47
48 #include <string.h>
49
50 typedef enum
51 {
52   FLAG_SYSTEMSTREAM = (1 << 0), /* match record only if caps have systemstream=true   */
53   FLAG_CONTAINER = (1 << 1),    /* format is a container format (muxed)               */
54   FLAG_AUDIO = (1 << 2),        /* format is an audio format, or audio container/tag  */
55   FLAG_VIDEO = (1 << 3),        /* format is a video format, or video container/tag   */
56   FLAG_IMAGE = (1 << 4),        /* format is an image format, or image container/tag  */
57   FLAG_SUB = (1 << 5),          /* format is a subtitle format, or subtitle container */
58   FLAG_TAG = (1 << 6),          /* format is a tag/container                          */
59   FLAG_GENERIC = (1 << 7),      /* format is a generic container (e.g. multipart)     */
60   FLAG_METADATA = (1 << 8),     /* format is a metadata format, or metadata container/tag */
61 } FormatFlags;
62
63 typedef struct
64 {
65   const gchar *type;
66   const gchar *desc;
67   FormatFlags flags:24;
68   gchar ext[5];                 /* file extension */
69 } FormatInfo;
70
71 #define AV_CONTAINER    (FLAG_CONTAINER | FLAG_AUDIO | FLAG_VIDEO)
72 #define AVS_CONTAINER   (AV_CONTAINER | FLAG_SUB)
73 #define AVI_CONTAINER   (AV_CONTAINER | FLAG_IMAGE)
74 #define AVIS_CONTAINER  (AV_CONTAINER | FLAG_IMAGE | FLAG_SUB)
75 #define AUDIO_CONTAINER (FLAG_CONTAINER | FLAG_AUDIO)
76 #define VIDEO_CONTAINER (FLAG_CONTAINER | FLAG_VIDEO)
77 #define AUDIO_TAG       (AUDIO_CONTAINER | FLAG_TAG)
78
79 static const FormatInfo formats[] = {
80   /* container/tag formats with static descriptions */
81   /* FIXME: does anyone use oga in practice? */
82   {"audio/ogg", "Ogg", AUDIO_CONTAINER, "ogg"},
83   {"audio/webm", "WebM", AUDIO_CONTAINER, "webm"},
84   {"audio/x-matroska", "Matroska", AUDIO_CONTAINER, "mka"},
85   {"application/gxf", "General Exchange Format (GXF)", AVI_CONTAINER, "gxf"},
86   {"application/ogg", "Ogg", AVIS_CONTAINER, "ogg"},
87   {"application/kate", "Ogg", FLAG_CONTAINER | FLAG_SUB, "ogg"},
88   {"application/mxf", "Material eXchange Format (MXF)", AVIS_CONTAINER, "mxf"},
89   {"application/vnd.rn-realmedia", "Realmedia", AV_CONTAINER, "rm"},
90   {"application/x-id3", N_("ID3 tag"), AUDIO_TAG, ""},
91   {"application/x-ape", N_("APE tag"), AUDIO_TAG, ""},
92   {"application/x-apetag", N_("APE tag"), AUDIO_TAG, ""},
93   {"application/x-icy", N_("ICY internet radio"), AUDIO_TAG, ""},
94   {"application/x-3gp", "3GP", AV_CONTAINER, "3gp"},
95   {"application/x-pn-realaudio", "RealAudio", AUDIO_CONTAINER, "ra"},
96   {"application/x-yuv4mpeg", "Y4M", VIDEO_CONTAINER, "y4m"},
97   {"multipart/x-mixed-replace", "Multipart", FLAG_CONTAINER | FLAG_GENERIC, ""},
98   {"video/ogg", "Ogg", AVIS_CONTAINER, "ogv"},
99   {"video/x-fli", "FLI/FLC/FLX Animation", VIDEO_CONTAINER, "fli"},
100   {"video/x-flv", "Flash", AV_CONTAINER, "flv"},
101   {"video/x-matroska", "Matroska", AVIS_CONTAINER, "mkv"},
102   /* FIXME: does anyone use .mk3d in practice, rather than .mkv? */
103   {"video/x-matroska-3d", "Matroska", AVIS_CONTAINER, "mk3d"},
104   {"video/webm", "WebM", AVS_CONTAINER, "webm"},
105   {"video/x-ms-asf", "Advanced Streaming Format (ASF)", AVIS_CONTAINER, "asf"},
106   {"video/x-msvideo", "Audio Video Interleave (AVI)", AVIS_CONTAINER, "avi"},
107   {"video/x-quicktime", "Quicktime", AVIS_CONTAINER, "mov"},
108   {"video/quicktime", "Quicktime", AVIS_CONTAINER, "mov"},
109   {"video/mj2", "Motion JPEG 2000", AVIS_CONTAINER, "mj2"},
110
111   /* audio formats with static descriptions */
112   {"audio/x-ac3", "AC-3 (ATSC A/52)", FLAG_AUDIO, "ac3"},
113   {"audio/ac3", "AC-3 (ATSC A/52)", FLAG_AUDIO, "ac3"},
114   {"audio/x-private-ac3", "DVD AC-3 (ATSC A/52)", FLAG_AUDIO, "ac3"},
115   {"audio/x-private1-ac3", "DVD AC-3 (ATSC A/52)", FLAG_AUDIO, "ac3"},
116   {"audio/x-alaw", "A-Law", FLAG_AUDIO, ""},
117   {"audio/amr", "Adaptive Multi Rate (AMR)", FLAG_AUDIO, "amr"},
118   {"audio/AMR", "Adaptive Multi Rate (AMR)", FLAG_AUDIO, "amr"},
119   {"audio/AMR-WB", "Adaptive Multi Rate WideBand (AMR-WB)", FLAG_AUDIO, "amr"},
120   {"audio/iLBC-sh", "Internet Low Bitrate Codec (iLBC)", AUDIO_CONTAINER,
121       "ilbc"},
122   {"audio/ms-gsm", "MS GSM", FLAG_AUDIO, "gsm"},
123   {"audio/qcelp", "QCELP", FLAG_AUDIO, ""},
124   {"audio/aiff", "Audio Interchange File Format (AIFF)", AUDIO_CONTAINER,
125       "aiff"},
126   {"audio/x-aiff", "Audio Interchange File Format (AIFF)", AUDIO_CONTAINER,
127       "aiff"},
128   {"audio/x-alac", N_("Apple Lossless Audio (ALAC)"), FLAG_AUDIO, ""},
129   {"audio/x-amr-nb-sh", "Adaptive Multi Rate NarrowBand (AMR-NB)",
130       AUDIO_CONTAINER, "amr"},
131   {"audio/x-amr-wb-sh", "Adaptive Multi Rate WideBand (AMR-WB)",
132       AUDIO_CONTAINER, "amr"},
133   {"audio/x-au", "Sun .au", AUDIO_CONTAINER, "au"},
134   {"audio/x-audible", "Audible Audio", AUDIO_CONTAINER, "aa"},
135   {"audio/x-caf", "Apple Core Audio Format", AUDIO_CONTAINER, "caf"},
136   {"audio/x-celt", "Constrained Energy Lapped Transform (CELT)", FLAG_AUDIO,
137       ""},
138   {"audio/x-cinepak", "Cinepak Audio", FLAG_AUDIO, ""},
139   {"audio/x-dpcm", "DPCM", FLAG_AUDIO, ""},
140   {"audio/x-dts", "DTS", FLAG_AUDIO, "dts"},
141   {"audio/x-private1-dts", "DTS", FLAG_AUDIO, "dts"},
142   {"audio/x-dv", "DV Audio", FLAG_AUDIO, ""},
143   {"audio/x-eac3", "E-AC-3 (ATSC A/52B)", FLAG_AUDIO, "eac3"},
144   {"audio/x-flac", N_("Free Lossless Audio Codec (FLAC)"), FLAG_AUDIO, "flac"},
145   {"audio/x-gsm", "GSM", FLAG_AUDIO, "gsm"},
146   {"audio/x-iec958", "S/PDIF IEC958", 0, ""},   /* TODO: check description */
147   {"audio/x-iLBC", "Internet Low Bitrate Codec (iLBC)", FLAG_AUDIO, "ilbc"},
148   {"audio/x-ircam", "Berkeley/IRCAM/CARL", FLAG_AUDIO, ""},
149   {"audio/x-lpcm", "LPCM", FLAG_AUDIO, ""},
150   {"audio/x-private1-lpcm", "DVD LPCM", FLAG_AUDIO, ""},
151   {"audio/x-m4a", "MPEG-4 AAC", FLAG_CONTAINER, "m4a"},
152   {"audio/x-mod", "Module Music Format (MOD)", FLAG_AUDIO, "mod"},
153   {"audio/x-mulaw", "Mu-Law", FLAG_AUDIO, ""},
154   {"audio/x-musepack", "Musepack (MPC)", FLAG_AUDIO, "mpc"},
155   {"audio/x-nellymoser", "Nellymoser Asao", FLAG_AUDIO, ""},
156   {"audio/x-nist", "Sphere NIST", FLAG_AUDIO, ""},
157   {"audio/x-nsf", "Nintendo NSF", FLAG_AUDIO, ""},
158   {"audio/x-opus", "Opus", FLAG_AUDIO, ""},
159   {"audio/x-paris", "Ensoniq PARIS", FLAG_AUDIO, ""},
160   {"audio/x-qdm", "QDesign Music (QDM)", FLAG_AUDIO, ""},
161   {"audio/x-qdm2", "QDesign Music (QDM) 2", FLAG_AUDIO, ""},
162   {"audio/x-ralf-mpeg4-generic", "Real Audio Lossless (RALF)", FLAG_AUDIO, ""},
163   {"audio/x-rf64", "Broadcast Wave Format", AUDIO_CONTAINER, "rf64"},
164   {"audio/x-sbc", "Low Complexity Subband Coding", FLAG_AUDIO, "sbc"},
165   {"audio/x-sds", "Midi Sample Dump Standard", FLAG_AUDIO, ""},
166   {"audio/x-shorten", "Shorten Lossless", FLAG_AUDIO, "shn"},
167   {"audio/x-sid", "Sid", FLAG_AUDIO, "sid"},
168   {"audio/x-sipro", "Sipro/ACELP.NET Voice", FLAG_AUDIO, ""},
169   {"audio/x-siren", "Siren", FLAG_AUDIO, ""},
170   {"audio/x-spc", "SNES-SPC700 Sound File Data", FLAG_AUDIO, "spc"},
171   {"audio/x-speex", "Speex", FLAG_AUDIO, ""},
172   {"audio/x-svx", "Amiga IFF / SVX8 / SV16", FLAG_AUDIO, ""},
173   {"audio/x-true-hd", "Dolby TrueHD", FLAG_AUDIO, ""},
174   {"audio/x-tta", N_("Lossless True Audio (TTA)"), FLAG_AUDIO, "tta"},
175   {"audio/x-ttafile", N_("Lossless True Audio (TTA)"), FLAG_AUDIO, "tta"},
176   {"audio/x-vnd.sony.atrac3", "Sony ATRAC3", FLAG_AUDIO, ""},
177   {"audio/x-vorbis", "Vorbis", FLAG_AUDIO, ""},
178   {"audio/x-voc", "SoundBlaster VOC", FLAG_AUDIO, ""},
179   {"audio/x-w64", "Sonic Foundry Wave64", AUDIO_CONTAINER, "w64"},
180   {"audio/x-wav", "WAV", AUDIO_CONTAINER, "wav"},
181   {"audio/x-wavpack", "Wavpack", FLAG_AUDIO, "wp"},
182   {"audio/x-wavpack-correction", "Wavpack", 0, "wpc"},
183   {"audio/x-wms", N_("Windows Media Speech"), FLAG_AUDIO, ""},
184   {"audio/x-voxware", "Voxware", FLAG_AUDIO, ""},
185   {"audio/x-xi", "Fasttracker 2 Extended Instrument", FLAG_AUDIO, "xi"},
186
187
188   /* video formats with static descriptions */
189   {"video/sp5x", "Sunplus JPEG 5.x", FLAG_VIDEO, ""},
190   {"video/vivo", "Vivo", FLAG_VIDEO, ""},
191   {"video/x-4xm", "4X Technologies Video", FLAG_VIDEO, ""},
192   {"video/x-apple-video", "Apple video", FLAG_VIDEO, ""},
193   {"video/x-aasc", "Autodesk Animator", FLAG_VIDEO, ""},
194   {"video/x-av1", "AV1", FLAG_VIDEO, ""},
195   {"video/x-camtasia", "TechSmith Camtasia", FLAG_VIDEO, ""},
196   {"video/x-cavs", "Chinese AVS (CAVS)", FLAG_VIDEO, ""},
197   {"video/x-cdxa", "RIFF/CDXA (VCD)", AV_CONTAINER, ""},
198   {"video/x-cineform", "CineForm", FLAG_VIDEO, ""},
199   {"video/x-cinepak", "Cinepak Video", FLAG_VIDEO, ""},
200   {"video/x-cirrus-logic-accupak", "Cirrus Logipak AccuPak", FLAG_VIDEO, ""},
201   {"video/x-compressed-yuv", N_("CYUV Lossless"), FLAG_VIDEO, ""},
202   {"video/x-dnxhd", "Digital Nonlinear Extensible High Definition (DNxHD)",
203       FLAG_VIDEO, ""},
204   {"subpicture/x-dvd", "DVD subpicture", FLAG_VIDEO, ""},
205   {"video/x-ffv", N_("FFMpeg v1"), FLAG_VIDEO, ""},
206   {"video/x-flash-screen", "Flash Screen Video", FLAG_VIDEO, ""},
207   {"video/x-flash-video", "Sorenson Spark Video", FLAG_VIDEO, ""},
208   {"video/x-h261", "H.261", FLAG_VIDEO, ""},
209   {"video/x-huffyuv", "Huffyuv", FLAG_VIDEO, ""},
210   {"video/x-intel-h263", "Intel H.263", FLAG_VIDEO, ""},
211   {"video/x-jpeg", "Motion JPEG", FLAG_VIDEO, ""},
212   /* { "video/x-jpeg-b", "", 0 }, does this actually exist? */
213   {"video/x-loco", "LOCO Lossless", FLAG_VIDEO, ""},
214   {"video/x-mimic", "MIMIC", FLAG_VIDEO, ""},
215   {"video/x-mjpeg", "Motion-JPEG", FLAG_VIDEO, ""},
216   {"video/x-mjpeg-b", "Motion-JPEG format B", FLAG_VIDEO, ""},
217   {"video/mpegts", "MPEG-2 Transport Stream", AVS_CONTAINER, "ts"},
218   {"video/x-mng", "Multiple Image Network Graphics (MNG)", FLAG_VIDEO, ""},
219   {"video/x-mszh", N_("Lossless MSZH"), FLAG_VIDEO, ""},
220   {"video/x-msvideocodec", "Microsoft Video 1", FLAG_VIDEO, ""},
221   {"video/x-mve", "Interplay MVE", AV_CONTAINER, "mve"},
222   {"video/x-nut", "NUT", AV_CONTAINER, "nut"},
223   {"video/x-nuv", "MythTV NuppelVideo (NUV)", AV_CONTAINER, "nuv"},
224   {"video/x-prores", "Apple ProRes", FLAG_VIDEO, ""},
225   {"video/x-qdrw", "Apple QuickDraw", FLAG_VIDEO, ""},
226   {"video/x-smc", "Apple SMC", FLAG_VIDEO, ""},
227   {"video/x-smoke", "Smoke", FLAG_VIDEO, ""},
228   {"video/x-tarkin", "Tarkin", FLAG_VIDEO, ""},
229   {"video/x-theora", "Theora", FLAG_VIDEO, ""},
230   {"video/x-rle", N_("Run-length encoding"), FLAG_VIDEO, ""},
231   {"video/x-ultimotion", "IBM UltiMotion", FLAG_VIDEO, ""},
232   {"video/x-vcd", "VideoCD (VCD)", 0},
233   {"video/x-vmnc", "VMWare NC", FLAG_VIDEO, ""},
234   {"video/x-vp3", "On2 VP3", FLAG_VIDEO, ""},
235   {"video/x-vp5", "On2 VP5", FLAG_VIDEO, ""},
236   {"video/x-vp6", "On2 VP6", FLAG_VIDEO, ""},
237   {"video/x-vp6-flash", "On2 VP6/Flash", FLAG_VIDEO, ""},
238   {"video/x-vp6-alpha", "On2 VP6 with alpha", FLAG_VIDEO, ""},
239   {"video/x-vp7", "On2 VP7", FLAG_VIDEO, ""},
240   {"video/x-vp8", "VP8", FLAG_VIDEO, ""},
241   {"video/x-vp9", "VP9", FLAG_VIDEO, ""},
242   {"video/x-zlib", "Lossless zlib video", FLAG_VIDEO, ""},
243   {"video/x-zmbv", "Zip Motion Block video", FLAG_VIDEO, ""},
244
245   /* image formats with static descriptions */
246   {"image/bmp", "BMP", FLAG_IMAGE, "bmp"},
247   {"image/x-bmp", "BMP", FLAG_IMAGE, "bmp"},
248   {"image/x-MS-bmp", "BMP", FLAG_IMAGE, "bmp"},
249   {"image/gif", "GIF", FLAG_IMAGE, "gif"},
250   {"image/jpeg", "JPEG", FLAG_IMAGE | FLAG_VIDEO, "jpg"},
251   {"image/jng", "JPEG Network Graphics (JNG)", FLAG_IMAGE, ""},
252   {"image/png", "PNG", FLAG_VIDEO | FLAG_IMAGE, "png"},
253   {"image/pbm", "Portable BitMap (PBM)", FLAG_IMAGE, "pbm"},
254   {"image/ppm", "Portable PixMap (PPM)", FLAG_IMAGE, "ppm"},
255   {"image/svg+xml", "Scalable Vector Graphics (SVG)", FLAG_IMAGE, "svg"},
256   {"image/tiff", "TIFF", FLAG_IMAGE, "tiff"},
257   {"image/x-cmu-raster", "CMU Raster Format", FLAG_IMAGE, ""},
258   {"image/x-degas", "DEGAS", FLAG_IMAGE, ""},
259   {"image/x-icon", "ICO", FLAG_IMAGE, "ico"},
260   {"image/x-j2c", "JPEG 2000", FLAG_VIDEO | FLAG_IMAGE, ""},
261   {"image/x-jpc", "JPEG 2000", FLAG_VIDEO | FLAG_IMAGE, ""},
262   {"image/jp2", "JPEG 2000", FLAG_VIDEO | FLAG_IMAGE, ""},
263   {"image/x-pcx", "PCX", FLAG_IMAGE, ""},
264   {"image/x-xcf", "XFC", FLAG_IMAGE, ""},
265   {"image/x-pixmap", "XPM", FLAG_IMAGE, "xpm"},
266   {"image/x-portable-anymap", "Portable AnyMap (PNM)", FLAG_IMAGE, "pnm"},
267   {"image/x-portable-graymap", "Portable GrayMap (PGM)", FLAG_IMAGE, "pgm"},
268   {"image/x-xpixmap", "XPM", FLAG_IMAGE, "xpm"},
269   {"image/x-quicktime", "QuickTime Image Format (QTIF)",
270       FLAG_IMAGE | FLAG_CONTAINER, ".mov"},
271   {"image/x-sun-raster", "Sun Raster Format (RAS)", FLAG_IMAGE, ""},
272   {"image/x-tga", "TGA", FLAG_IMAGE, "tga"},
273   {"image/vnd.wap.wbmp", "Wireless Bitmap", FLAG_IMAGE, "wbmp"},
274
275   /* subtitle formats with static descriptions */
276   {"text/x-raw", N_("Timed Text"), FLAG_SUB, ""},
277   {"application/x-ssa", "SubStation Alpha", FLAG_SUB, ""},
278   {"application/x-ass", "Advanced SubStation Alpha", FLAG_SUB, ""},
279   /* FIXME: add variant field to typefinder? */
280   {"application/x-subtitle", N_("Subtitle"), FLAG_SUB, ""},
281   {"application/x-subtitle-mpl2", N_("MPL2 subtitle format"), FLAG_SUB, ""},
282   {"application/x-subtitle-dks", N_("DKS subtitle format"), FLAG_SUB, ""},
283   {"application/x-subtitle-qttext", N_("QTtext subtitle format"), FLAG_SUB, ""},
284   {"application/x-subtitle-sami", N_("Sami subtitle format"), FLAG_SUB, ""},
285   {"application/x-subtitle-tmplayer", N_("TMPlayer subtitle format"), FLAG_SUB,
286       ""},
287   {"application/x-teletext", "Teletext", 0, ""},
288   {"application/x-kate", "Kate", 0, ""},
289   {"closedcaption/x-cea-608", N_("CEA 608 Closed Caption"), FLAG_SUB, ""},
290   {"closedcaption/x-cea-708", N_("CEA 708 Closed Caption"), FLAG_SUB, ""},
291   {"subtitle/x-kate", N_("Kate subtitle format"), FLAG_SUB, ""},
292   {"application/x-subtitle-vtt", N_("WebVTT subtitle format"), FLAG_SUB, ""},
293   {"subpicture/x-dvb", "DVB subtitles", FLAG_SUB, ""},
294   {"subpicture/x-pgs", "PGS subtitles", FLAG_SUB, ""},
295   {"subpicture/x-xsub", "XSUB subtitles", FLAG_SUB, ""},
296
297   /* non-audio/video/container formats */
298   {"hdv/aux-v", "HDV AUX-V", 0, ""},
299   {"hdv/aux-a", "HDV AUX-A", 0, ""},
300
301   /* formats with dynamic descriptions */
302   {"audio/mpeg", NULL, FLAG_AUDIO, ""},
303   {"audio/x-adpcm", NULL, FLAG_AUDIO, ""},
304   {"audio/x-mace", NULL, FLAG_AUDIO, ""},
305   {"audio/x-pn-realaudio", NULL, FLAG_AUDIO, ""},
306   {"audio/x-raw", NULL, FLAG_AUDIO, ""},
307   {"audio/x-wma", NULL, FLAG_AUDIO, ""},
308   {"video/mpeg", NULL, AVS_CONTAINER | FLAG_SYSTEMSTREAM, "mpg"},
309   {"video/mpeg", NULL, FLAG_VIDEO, ""},
310   {"video/x-asus", NULL, FLAG_VIDEO, ""},
311   {"video/x-ati-vcr", NULL, FLAG_VIDEO, ""},
312   {"video/x-dirac", NULL, FLAG_VIDEO, ""},
313   {"video/x-divx", NULL, FLAG_VIDEO, ""},
314   {"video/x-dv", "Digital Video (DV) System Stream",
315       FLAG_CONTAINER | FLAG_SYSTEMSTREAM, "dv"},
316   {"video/x-dv", "Digital Video (DV)", FLAG_VIDEO, ""},
317   {"video/x-h263", NULL, FLAG_VIDEO, "h263"},
318   {"video/x-h264", NULL, FLAG_VIDEO, "h264"},
319   {"video/x-h265", NULL, FLAG_VIDEO, "h265"},
320   {"video/x-indeo", NULL, FLAG_VIDEO, ""},
321   {"video/x-msmpeg", NULL, FLAG_VIDEO, ""},
322   {"video/x-pn-realvideo", NULL, FLAG_VIDEO, ""},
323 #if 0
324   /* do these exist? are they used anywhere? */
325   {"video/x-pn-multirate-realvideo", NULL, 0},
326   {"audio/x-pn-multirate-realaudio", NULL, 0},
327   {"audio/x-pn-multirate-realaudio-live", NULL, 0},
328 #endif
329   {"video/x-truemotion", NULL, FLAG_VIDEO, ""},
330   {"video/x-raw", NULL, FLAG_VIDEO, ""},
331   {"video/x-svq", NULL, FLAG_VIDEO, ""},
332   {"video/x-wmv", NULL, FLAG_VIDEO, ""},
333   {"video/x-xan", NULL, FLAG_VIDEO, ""},
334   {"video/x-tscc", NULL, FLAG_VIDEO, ""},
335   {"application/x-onvif-metadata", "ONVIF XML Timed MetaData", FLAG_METADATA, ""}
336 };
337
338 static const gchar *
339 pbutils_desc_get_profile_name_from_nick (const gchar * map, gsize map_len,
340     const gchar * nick)
341 {
342   const gchar *end = map + map_len;
343   const gchar *p;
344
345   p = map;
346   while (*p != '\0' && p < end) {
347     guint len = strlen (p);
348
349     if (strcmp (p, nick) == 0)
350       return p + len + 1;
351     p += len + 1;
352     p += strlen (p) + 1;
353   }
354   return NULL;
355 }
356
357 static const gchar *
358 pbutils_desc_get_mpeg2v_profile_name_from_nick (const gchar * nick)
359 {
360   static const gchar map[] =
361       "simple\000Simple\000main\000Main\000high\000High\000";
362
363   return pbutils_desc_get_profile_name_from_nick (map, sizeof (map), nick);
364 }
365
366 static const gchar *
367 pbutils_desc_get_mpeg4v_profile_name_from_nick (const gchar * nick)
368 {
369   static const gchar map[] = "simple\000Simple\000"
370       "simple-scalable\000Simple Scalable\000"
371       "core\000Core\000"
372       "main\000Main\000"
373       "n-bit\000N-bit\000"
374       "scalable\000Scalable\000"
375       "hybrid\000Hybrid\000"
376       "advanced-real-time-simple\000Advanced Real-Time Simple\000"
377       "core-scalable\000Core-Scalable\000"
378       "advanced-coding-efficiency\000Advanced Coding Efficiency\000"
379       "advanced-core\000Advanced Core\000"
380       "advanced-scalable-texture\000Advanced Scalable Texture\000"
381       "simple-face\000Simple Face Animation\000"
382       "simple-fba\000Simple FBA\000"
383       "simple-studio\000Simple Studio\000"
384       "core-studio\000Core Studio\000"
385       "advanced-simple\000Advanced Simple\000"
386       "fine-granularity-scalable\000Fine Granularity Scalable\000"
387       "basic-animated-texture\000Basic Animated Texture\000"
388       "baseline\000Baseline Profile\000";
389
390   return pbutils_desc_get_profile_name_from_nick (map, sizeof (map), nick);
391 }
392
393 static const gchar *
394 pbutils_desc_get_h264_profile_name_from_nick (const gchar * nick)
395 {
396   static const gchar map[] = "baseline\000Baseline\000"
397       "constrained-baseline\000Constrained Baseline\000"
398       "main\000Main\000"
399       "extended\000Extended\000"
400       "high\000High\000"
401       "high-10-intra\000High 10 Intra\000"
402       "high-10\000High 10\000"
403       "high-4:2:2-intra\000High 4:2:2 Intra\000"
404       "high-4:2:2\000High 4:2:2\000"
405       "high-4:4:4-intra\000High 4:4:4 Intra\000"
406       "high-4:4:4\000High 4:4:4\000"
407       "cavlc-4:4:4-intra\000CAVLC 4:4:4 Intra\000"
408       "multiview-high\000Multiview High\000"
409       "stereo-high\000Stereo High\000"
410       "scalable-constrained-baseline\000Scalable Constrained Baseline\000"
411       "scalable-baseline\000Scalable Baseline\000"
412       "scalable-high\000Scalable High\000";
413
414   return pbutils_desc_get_profile_name_from_nick (map, sizeof (map), nick);
415 }
416
417 static const gchar *
418 pbutils_desc_get_h265_profile_name_from_nick (const gchar * nick)
419 {
420   static const gchar map[] = "main\000Main\000"
421       "main-10\000Main 10\000"
422       "main-12\000Main 12\000"
423       "main-4:2:2-10\000Main 4:2:2 10\000"
424       "main-4:2:2-12\000Main 4:2:2 12\000"
425       "main-4:4:4\000Main 4:4:4\000"
426       "main-4:4:4-10\000Main 4:4:4 10\000"
427       "main-4:4:4-12\000Main 4:4:4 12\000"
428       "main-4:4:4-16-intra\000Main 4:4:4 16 Intra\000"
429       "main-still-picture\000Main Still Picture\000";
430
431   return pbutils_desc_get_profile_name_from_nick (map, sizeof (map), nick);
432 }
433
434 /* returns static descriptions and dynamic ones (such as video/x-raw),
435  * or NULL if caps aren't known at all */
436 static gchar *
437 format_info_get_desc (const FormatInfo * info, const GstCaps * caps)
438 {
439   const GstStructure *s;
440
441   g_assert (info != NULL);
442
443   gst_pb_utils_init_locale_text_domain ();
444
445   if (info->desc != NULL)
446     return g_strdup (_(info->desc));
447
448   s = gst_caps_get_structure (caps, 0);
449
450   if (strcmp (info->type, "video/x-raw") == 0) {
451     gchar *ret = NULL;
452     const gchar *str = 0;
453     GstVideoFormat format;
454     const GstVideoFormatInfo *finfo;
455
456     str = gst_structure_get_string (s, "format");
457     if (str == NULL)
458       return g_strdup (_("Uncompressed video"));
459     format = gst_video_format_from_string (str);
460     if (format == GST_VIDEO_FORMAT_UNKNOWN)
461       return g_strdup (_("Uncompressed video"));
462
463     finfo = gst_video_format_get_info (format);
464
465     if (GST_VIDEO_FORMAT_INFO_IS_GRAY (finfo)) {
466       ret = g_strdup (_("Uncompressed gray"));
467     } else if (GST_VIDEO_FORMAT_INFO_IS_YUV (finfo)) {
468       const gchar *subs;
469       gint w_sub, h_sub, n_semi;
470
471       w_sub = GST_VIDEO_FORMAT_INFO_W_SUB (finfo, 1);
472       h_sub = GST_VIDEO_FORMAT_INFO_H_SUB (finfo, 1);
473
474       if (w_sub == 1 && h_sub == 1) {
475         subs = "4:4:4";
476       } else if (w_sub == 2 && h_sub == 1) {
477         subs = "4:2:2";
478       } else if (w_sub == 2 && h_sub == 2) {
479         subs = "4:2:0";
480       } else if (w_sub == 4 && h_sub == 1) {
481         subs = "4:1:1";
482       } else {
483         subs = "";
484       }
485
486       n_semi = GST_VIDEO_FORMAT_INFO_HAS_ALPHA (finfo) ? 3 : 2;
487
488       if (GST_VIDEO_FORMAT_INFO_N_PLANES (finfo) == 1) {
489         ret = g_strdup_printf (_("Uncompressed packed YUV %s"), subs);
490       } else if (GST_VIDEO_FORMAT_INFO_N_PLANES (finfo) == n_semi) {
491         ret = g_strdup_printf (_("Uncompressed semi-planar YUV %s"), subs);
492       } else {
493         ret = g_strdup_printf (_("Uncompressed planar YUV %s"), subs);
494       }
495     } else if (GST_VIDEO_FORMAT_INFO_IS_RGB (finfo)) {
496       gboolean alpha, palette;
497       gint bits;
498
499       alpha = GST_VIDEO_FORMAT_INFO_HAS_ALPHA (finfo);
500       palette = GST_VIDEO_FORMAT_INFO_HAS_PALETTE (finfo);
501       bits = GST_VIDEO_FORMAT_INFO_BITS (finfo);
502
503       if (palette) {
504         ret = g_strdup_printf (_("Uncompressed palettized %d-bit %s"),
505             bits, alpha ? "RGBA" : "RGB");
506       } else {
507         ret = g_strdup_printf (_("Uncompressed %d-bit %s"),
508             bits, alpha ? "RGBA" : "RGB");
509       }
510     } else {
511       ret = g_strdup (_("Uncompressed video"));
512     }
513     return ret;
514   } else if (strcmp (info->type, "video/x-h263") == 0) {
515     const gchar *variant, *ret;
516
517     variant = gst_structure_get_string (s, "variant");
518     if (variant == NULL)
519       ret = "H.263";
520     else if (strcmp (variant, "itu") == 0)
521       ret = "ITU H.26n";        /* why not ITU H.263? (tpm) */
522     else if (strcmp (variant, "lead") == 0)
523       ret = "Lead H.263";
524     else if (strcmp (variant, "microsoft") == 0)
525       ret = "Microsoft H.263";
526     else if (strcmp (variant, "vdolive") == 0)
527       ret = "VDOLive";
528     else if (strcmp (variant, "vivo") == 0)
529       ret = "Vivo H.263";
530     else if (strcmp (variant, "xirlink") == 0)
531       ret = "Xirlink H.263";
532     else {
533       GST_WARNING ("Unknown H263 variant '%s'", variant);
534       ret = "H.263";
535     }
536     return g_strdup (ret);
537   } else if (strcmp (info->type, "video/x-h264") == 0) {
538     const gchar *variant, *ret;
539     const gchar *profile;
540
541     variant = gst_structure_get_string (s, "variant");
542     if (variant == NULL)
543       ret = "H.264";
544     else if (strcmp (variant, "itu") == 0)
545       ret = "ITU H.264";
546     else if (strcmp (variant, "videosoft") == 0)
547       ret = "Videosoft H.264";
548     else if (strcmp (variant, "lead") == 0)
549       ret = "Lead H.264";
550     else {
551       GST_WARNING ("Unknown H264 variant '%s'", variant);
552       ret = "H.264";
553     }
554     /* profile */
555     profile = gst_structure_get_string (s, "profile");
556     if (profile != NULL)
557       profile = pbutils_desc_get_h264_profile_name_from_nick (profile);
558     if (profile == NULL)
559       return g_strdup (ret);
560     return g_strdup_printf ("%s (%s Profile)", ret, profile);
561   } else if (strcmp (info->type, "video/x-h265") == 0) {
562     const gchar *profile = gst_structure_get_string (s, "profile");
563
564     if (profile != NULL)
565       profile = pbutils_desc_get_h265_profile_name_from_nick (profile);
566     if (profile != NULL)
567       return g_strdup_printf ("H.265 (%s Profile)", profile);
568
569     return g_strdup ("H.265");
570   } else if (strcmp (info->type, "video/x-dirac") == 0) {
571     const gchar *profile = gst_structure_get_string (s, "profile");
572     if (profile == NULL)
573       return g_strdup ("Dirac");
574     if (strcmp (profile, "vc2-low-delay") == 0)
575       return g_strdup_printf ("Dirac (%s)", "VC-2 Low Delay Profile");
576     else if (strcmp (profile, "vc2-simple") == 0)
577       return g_strdup_printf ("Dirac (%s)", "VC-2 Simple Profile");
578     else if (strcmp (profile, "vc2-main") == 0)
579       return g_strdup_printf ("Dirac (%s)", "VC-2 Main Profile");
580     else
581       return g_strdup ("Dirac");
582   } else if (strcmp (info->type, "video/x-divx") == 0) {
583     gint ver = 0;
584
585     if (!gst_structure_get_int (s, "divxversion", &ver) || ver <= 2) {
586       GST_WARNING ("Unexpected DivX version in %" GST_PTR_FORMAT, caps);
587       return g_strdup ("DivX MPEG-4");
588     }
589     return g_strdup_printf (_("DivX MPEG-4 Version %d"), ver);
590   } else if (strcmp (info->type, "video/x-msmpeg") == 0) {
591     gint ver = 0;
592
593     if (!gst_structure_get_int (s, "msmpegversion", &ver) ||
594         ver < 40 || ver > 49) {
595       GST_WARNING ("Unexpected msmpegversion in %" GST_PTR_FORMAT, caps);
596       return g_strdup ("Microsoft MPEG-4 4.x");
597     }
598     return g_strdup_printf ("Microsoft MPEG-4 4.%d", ver % 10);
599   } else if (strcmp (info->type, "video/x-truemotion") == 0) {
600     gint ver = 0;
601
602     gst_structure_get_int (s, "trueversion", &ver);
603     switch (ver) {
604       case 1:
605         return g_strdup_printf ("Duck TrueMotion 1");
606       case 2:
607         return g_strdup_printf ("TrueMotion 2.0");
608       default:
609         GST_WARNING ("Unexpected trueversion in %" GST_PTR_FORMAT, caps);
610         break;
611     }
612     return g_strdup_printf ("TrueMotion");
613   } else if (strcmp (info->type, "video/x-xan") == 0) {
614     gint ver = 0;
615
616     if (!gst_structure_get_int (s, "wcversion", &ver) || ver < 1) {
617       GST_WARNING ("Unexpected wcversion in %" GST_PTR_FORMAT, caps);
618       return g_strdup ("Xan Wing Commander");
619     }
620     return g_strdup_printf ("Xan Wing Commander %u", ver);
621   } else if (strcmp (info->type, "video/x-indeo") == 0) {
622     gint ver = 0;
623
624     if (!gst_structure_get_int (s, "indeoversion", &ver) || ver < 2) {
625       GST_WARNING ("Unexpected indeoversion in %" GST_PTR_FORMAT, caps);
626       return g_strdup ("Intel Indeo");
627     }
628     return g_strdup_printf ("Intel Indeo %u", ver);
629   } else if (strcmp (info->type, "audio/x-wma") == 0) {
630     gint ver = 0;
631
632     gst_structure_get_int (s, "wmaversion", &ver);
633     switch (ver) {
634       case 1:
635       case 2:
636       case 3:
637         return g_strdup_printf ("Windows Media Audio %d", ver + 6);
638       default:
639         break;
640     }
641     GST_WARNING ("Unexpected wmaversion in %" GST_PTR_FORMAT, caps);
642     return g_strdup ("Windows Media Audio");
643   } else if (strcmp (info->type, "video/x-wmv") == 0) {
644     gint ver = 0;
645     const gchar *str;
646
647     gst_structure_get_int (s, "wmvversion", &ver);
648     str = gst_structure_get_string (s, "format");
649
650     switch (ver) {
651       case 1:
652       case 2:
653       case 3:
654         if (str && !strncmp (str, "MSS", 3)) {
655           return g_strdup_printf ("Windows Media Video %d Screen", ver + 6);
656         } else {
657           return g_strdup_printf ("Windows Media Video %d", ver + 6);
658         }
659       default:
660         break;
661     }
662     GST_WARNING ("Unexpected wmvversion in %" GST_PTR_FORMAT, caps);
663     return g_strdup ("Windows Media Video");
664   } else if (strcmp (info->type, "audio/x-mace") == 0) {
665     gint ver = 0;
666
667     gst_structure_get_int (s, "maceversion", &ver);
668     if (ver == 3 || ver == 6) {
669       return g_strdup_printf ("MACE-%d", ver);
670     } else {
671       GST_WARNING ("Unexpected maceversion in %" GST_PTR_FORMAT, caps);
672       return g_strdup ("MACE");
673     }
674   } else if (strcmp (info->type, "video/x-svq") == 0) {
675     gint ver = 0;
676
677     gst_structure_get_int (s, "svqversion", &ver);
678     if (ver == 1 || ver == 3) {
679       return g_strdup_printf ("Sorensen Video %d", ver);
680     } else {
681       GST_WARNING ("Unexpected svqversion in %" GST_PTR_FORMAT, caps);
682       return g_strdup ("Sorensen Video");
683     }
684   } else if (strcmp (info->type, "video/x-asus") == 0) {
685     gint ver = 0;
686
687     gst_structure_get_int (s, "asusversion", &ver);
688     if (ver == 1 || ver == 2) {
689       return g_strdup_printf ("Asus Video %d", ver);
690     } else {
691       GST_WARNING ("Unexpected asusversion in %" GST_PTR_FORMAT, caps);
692       return g_strdup ("Asus Video");
693     }
694   } else if (strcmp (info->type, "video/x-ati-vcr") == 0) {
695     gint ver = 0;
696
697     gst_structure_get_int (s, "vcrversion", &ver);
698     if (ver == 1 || ver == 2) {
699       return g_strdup_printf ("ATI VCR %d", ver);
700     } else {
701       GST_WARNING ("Unexpected acrversion in %" GST_PTR_FORMAT, caps);
702       return g_strdup ("ATI VCR");
703     }
704   } else if (strcmp (info->type, "audio/x-adpcm") == 0) {
705     const GValue *layout_val;
706
707     layout_val = gst_structure_get_value (s, "layout");
708     if (layout_val != NULL && G_VALUE_HOLDS_STRING (layout_val)) {
709       const gchar *layout;
710
711       if ((layout = g_value_get_string (layout_val))) {
712         gchar *layout_upper, *ret;
713
714         if (strcmp (layout, "swf") == 0)
715           return g_strdup ("Shockwave ADPCM");
716         if (strcmp (layout, "microsoft") == 0)
717           return g_strdup ("Microsoft ADPCM");
718         if (strcmp (layout, "quicktime") == 0)
719           return g_strdup ("Quicktime ADPCM");
720         if (strcmp (layout, "westwood") == 0)
721           return g_strdup ("Westwood ADPCM");
722         if (strcmp (layout, "yamaha") == 0)
723           return g_strdup ("Yamaha ADPCM");
724         /* FIXME: other layouts: sbpro2, sbpro3, sbpro4, ct, g726, ea,
725          * adx, xa, 4xm, smjpeg, dk4, dk3, dvi */
726         layout_upper = g_ascii_strup (layout, -1);
727         ret = g_strdup_printf ("%s ADPCM", layout_upper);
728         g_free (layout_upper);
729         return ret;
730       }
731     }
732     return g_strdup ("ADPCM");
733   } else if (strcmp (info->type, "audio/mpeg") == 0) {
734     gint ver = 0, layer = 0;
735
736     gst_structure_get_int (s, "mpegversion", &ver);
737
738     switch (ver) {
739       case 1:
740         gst_structure_get_int (s, "layer", &layer);
741         switch (layer) {
742           case 1:
743           case 2:
744           case 3:
745             return g_strdup_printf ("MPEG-1 Layer %d (MP%d)", layer, layer);
746           default:
747             break;
748         }
749         GST_WARNING ("Unexpected MPEG-1 layer in %" GST_PTR_FORMAT, caps);
750         return g_strdup ("MPEG-1 Audio");
751       case 2:
752         return g_strdup ("MPEG-2 AAC");
753       case 4:
754         return g_strdup ("MPEG-4 AAC");
755       default:
756         break;
757     }
758     GST_WARNING ("Unexpected audio mpegversion in %" GST_PTR_FORMAT, caps);
759     return g_strdup ("MPEG Audio");
760   } else if (strcmp (info->type, "audio/x-pn-realaudio") == 0) {
761     gint ver = 0;
762
763     gst_structure_get_int (s, "raversion", &ver);
764     switch (ver) {
765       case 1:
766         return g_strdup ("RealAudio 14k4bps");
767       case 2:
768         return g_strdup ("RealAudio 28k8bps");
769       case 8:
770         return g_strdup ("RealAudio G2 (Cook)");
771       default:
772         break;
773     }
774     GST_WARNING ("Unexpected raversion in %" GST_PTR_FORMAT, caps);
775     return g_strdup ("RealAudio");
776   } else if (strcmp (info->type, "video/x-pn-realvideo") == 0) {
777     gint ver = 0;
778
779     gst_structure_get_int (s, "rmversion", &ver);
780     switch (ver) {
781       case 1:
782         return g_strdup ("RealVideo 1.0");
783       case 2:
784         return g_strdup ("RealVideo 2.0");
785       case 3:
786         return g_strdup ("RealVideo 3.0");
787       case 4:
788         return g_strdup ("RealVideo 4.0");
789       default:
790         break;
791     }
792     GST_WARNING ("Unexpected rmversion in %" GST_PTR_FORMAT, caps);
793     return g_strdup ("RealVideo");
794   } else if (strcmp (info->type, "video/mpeg") == 0) {
795     gboolean sysstream;
796     gint ver = 0;
797
798     if (!gst_structure_get_boolean (s, "systemstream", &sysstream)) {
799       GST_WARNING ("Missing systemstream field in mpeg video caps "
800           "%" GST_PTR_FORMAT, caps);
801       sysstream = FALSE;
802     }
803
804     if (gst_structure_get_int (s, "mpegversion", &ver) && ver > 0 && ver <= 4) {
805       if (sysstream) {
806         return g_strdup_printf ("MPEG-%d System Stream", ver);
807       } else {
808         const gchar *profile = gst_structure_get_string (s, "profile");
809         if (profile != NULL) {
810           if (ver == 4)
811             profile = pbutils_desc_get_mpeg4v_profile_name_from_nick (profile);
812           else if (ver == 2)
813             profile = pbutils_desc_get_mpeg2v_profile_name_from_nick (profile);
814           else
815             profile = NULL;
816         }
817         if (profile != NULL)
818           return g_strdup_printf ("MPEG-%d Video (%s Profile)", ver, profile);
819         else
820           return g_strdup_printf ("MPEG-%d Video", ver);
821       }
822     }
823     GST_WARNING ("Missing mpegversion field in mpeg video caps "
824         "%" GST_PTR_FORMAT, caps);
825     return g_strdup ("MPEG Video");
826   } else if (strcmp (info->type, "audio/x-raw") == 0) {
827     gint depth = 0;
828     gboolean is_float;
829     const gchar *str;
830     GstAudioFormat format = GST_AUDIO_FORMAT_UNKNOWN;
831     const GstAudioFormatInfo *finfo;
832
833     str = gst_structure_get_string (s, "format");
834     if (str)
835       format = gst_audio_format_from_string (str);
836     if (format == GST_AUDIO_FORMAT_UNKNOWN)
837       return g_strdup (_("Uncompressed audio"));
838
839     finfo = gst_audio_format_get_info (format);
840     depth = GST_AUDIO_FORMAT_INFO_DEPTH (finfo);
841     is_float = GST_AUDIO_FORMAT_INFO_IS_FLOAT (finfo);
842
843     return g_strdup_printf (_("Raw %d-bit %s audio"), depth,
844         is_float ? "floating-point" : "PCM");
845   } else if (strcmp (info->type, "video/x-tscc") == 0) {
846     gint version;
847     gst_structure_get_int (s, "tsccversion", &version);
848     switch (version) {
849       case 1:
850         return g_strdup ("TechSmith Screen Capture 1");
851       case 2:
852         return g_strdup ("TechSmith Screen Capture 2");
853       default:
854         break;
855     }
856     GST_WARNING ("Unexpected version in %" GST_PTR_FORMAT, caps);
857     return g_strdup ("TechSmith Screen Capture");
858   }
859   return NULL;
860 }
861
862 /* returns format info structure, will return NULL for dynamic media types! */
863 static const FormatInfo *
864 find_format_info (const GstCaps * caps)
865 {
866   const GstStructure *s;
867   const gchar *media_type;
868   guint i;
869
870   s = gst_caps_get_structure (caps, 0);
871   media_type = gst_structure_get_name (s);
872
873   for (i = 0; i < G_N_ELEMENTS (formats); ++i) {
874     if (strcmp (media_type, formats[i].type) == 0) {
875       gboolean is_sys = FALSE;
876
877       if ((formats[i].flags & FLAG_SYSTEMSTREAM) == 0)
878         return &formats[i];
879
880       /* this record should only be matched if the systemstream field is set */
881       if (gst_structure_get_boolean (s, "systemstream", &is_sys) && is_sys)
882         return &formats[i];
883     }
884   }
885
886   return NULL;
887 }
888
889 static gboolean
890 caps_are_rtp_caps (const GstCaps * caps, const gchar * media, gchar ** format)
891 {
892   const GstStructure *s;
893   const gchar *str;
894
895   g_assert (media != NULL && format != NULL);
896
897   s = gst_caps_get_structure (caps, 0);
898   if (!gst_structure_has_name (s, "application/x-rtp"))
899     return FALSE;
900   if (!gst_structure_has_field_typed (s, "media", G_TYPE_STRING))
901     return FALSE;
902   str = gst_structure_get_string (s, "media");
903   if (str == NULL || !g_str_equal (str, media))
904     return FALSE;
905   str = gst_structure_get_string (s, "encoding-name");
906   if (str == NULL || *str == '\0')
907     return FALSE;
908
909   if (strcmp (str, "X-ASF-PF") == 0) {
910     *format = g_strdup ("Windows Media");
911   } else if (g_str_has_prefix (str, "X-")) {
912     *format = g_strdup (str + 2);
913   } else {
914     *format = g_strdup (str);
915   }
916
917   return TRUE;
918 }
919
920 /**
921  * gst_pb_utils_get_source_description:
922  * @protocol: the protocol the source element needs to handle, e.g. "http"
923  *
924  * Returns a localised string describing a source element handling the protocol
925  * specified in @protocol, for use in error dialogs or other messages to be
926  * seen by the user. Should never return NULL unless @protocol is invalid.
927  *
928  * This function is mainly for internal use, applications would typically
929  * use gst_missing_plugin_message_get_description() to get a description of
930  * a missing feature from a missing-plugin message.
931  *
932  * Returns: a newly-allocated description string, or NULL on error. Free
933  *          string with g_free() when not needed any longer.
934  */
935 gchar *
936 gst_pb_utils_get_source_description (const gchar * protocol)
937 {
938   gchar *proto_uc, *ret;
939
940   g_return_val_if_fail (protocol != NULL, NULL);
941
942   gst_pb_utils_init_locale_text_domain ();
943
944   if (strcmp (protocol, "cdda") == 0)
945     return g_strdup (_("Audio CD source"));
946
947   if (strcmp (protocol, "dvd") == 0)
948     return g_strdup (_("DVD source"));
949
950   if (strcmp (protocol, "rtsp") == 0)
951     return g_strdup (_("Real Time Streaming Protocol (RTSP) source"));
952
953   /* TODO: what about mmst, mmsu, mmsh? */
954   if (strcmp (protocol, "mms") == 0)
955     return g_strdup (_("Microsoft Media Server (MMS) protocol source"));
956
957   /* make protocol uppercase */
958   proto_uc = g_ascii_strup (protocol, -1);
959
960   /* TODO: find out how to add a comment for translators to the source code
961    * (and tell them to make the first letter uppercase below if they move
962    * the protocol to the middle or end of the string) */
963   ret = g_strdup_printf (_("%s protocol source"), proto_uc);
964
965   g_free (proto_uc);
966
967   return ret;
968 }
969
970 /**
971  * gst_pb_utils_get_sink_description:
972  * @protocol: the protocol the sink element needs to handle, e.g. "http"
973  *
974  * Returns a localised string describing a sink element handling the protocol
975  * specified in @protocol, for use in error dialogs or other messages to be
976  * seen by the user. Should never return NULL unless @protocol is invalid.
977  *
978  * This function is mainly for internal use, applications would typically
979  * use gst_missing_plugin_message_get_description() to get a description of
980  * a missing feature from a missing-plugin message.
981  *
982  * Returns: a newly-allocated description string, or NULL on error. Free
983  *          string with g_free() when not needed any longer.
984  */
985 gchar *
986 gst_pb_utils_get_sink_description (const gchar * protocol)
987 {
988   gchar *proto_uc, *ret;
989
990   g_return_val_if_fail (protocol != NULL, NULL);
991
992   /* make protocol uppercase */
993   proto_uc = g_ascii_strup (protocol, -1);
994
995   /* TODO: find out how to add a comment for translators to the source code
996    * (and tell them to make the first letter uppercase below if they move
997    * the protocol to the middle or end of the string) */
998   ret = g_strdup_printf ("%s protocol sink", proto_uc);
999
1000   g_free (proto_uc);
1001
1002   return ret;
1003 }
1004
1005 /**
1006  * gst_pb_utils_get_decoder_description:
1007  * @caps: the (fixed) #GstCaps for which an decoder description is needed
1008  *
1009  * Returns a localised string describing an decoder for the format specified
1010  * in @caps, for use in error dialogs or other messages to be seen by the user.
1011  * Should never return NULL unless @factory_name or @caps are invalid.
1012  *
1013  * This function is mainly for internal use, applications would typically
1014  * use gst_missing_plugin_message_get_description() to get a description of
1015  * a missing feature from a missing-plugin message.
1016  *
1017  * Returns: a newly-allocated description string, or NULL on error. Free
1018  *          string with g_free() when not needed any longer.
1019  */
1020 gchar *
1021 gst_pb_utils_get_decoder_description (const GstCaps * caps)
1022 {
1023   gchar *str, *ret;
1024   GstCaps *tmp;
1025
1026   g_return_val_if_fail (caps != NULL, NULL);
1027   g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
1028
1029   tmp = copy_and_clean_caps (caps);
1030
1031   g_return_val_if_fail (gst_caps_is_fixed (tmp), NULL);
1032
1033   gst_pb_utils_init_locale_text_domain ();
1034
1035   /* special-case RTP caps */
1036   if (caps_are_rtp_caps (tmp, "video", &str)) {
1037     ret = g_strdup_printf (_("%s video RTP depayloader"), str);
1038   } else if (caps_are_rtp_caps (tmp, "audio", &str)) {
1039     ret = g_strdup_printf (_("%s audio RTP depayloader"), str);
1040   } else if (caps_are_rtp_caps (tmp, "application", &str)) {
1041     ret = g_strdup_printf (_("%s RTP depayloader"), str);
1042   } else {
1043     const FormatInfo *info;
1044
1045     str = gst_pb_utils_get_codec_description (tmp);
1046     info = find_format_info (tmp);
1047     if (info != NULL && (info->flags & FLAG_CONTAINER) != 0) {
1048       ret = g_strdup_printf (_("%s demuxer"), str);
1049     } else {
1050       ret = g_strdup_printf (_("%s decoder"), str);
1051     }
1052   }
1053
1054   g_free (str);
1055   gst_caps_unref (tmp);
1056
1057   return ret;
1058 }
1059
1060 /**
1061  * gst_pb_utils_get_encoder_description:
1062  * @caps: the (fixed) #GstCaps for which an encoder description is needed
1063  *
1064  * Returns a localised string describing an encoder for the format specified
1065  * in @caps, for use in error dialogs or other messages to be seen by the user.
1066  * Should never return NULL unless @factory_name or @caps are invalid.
1067  *
1068  * This function is mainly for internal use, applications would typically
1069  * use gst_missing_plugin_message_get_description() to get a description of
1070  * a missing feature from a missing-plugin message.
1071  *
1072  * Returns: a newly-allocated description string, or NULL on error. Free
1073  *          string with g_free() when not needed any longer.
1074  */
1075 gchar *
1076 gst_pb_utils_get_encoder_description (const GstCaps * caps)
1077 {
1078   gchar *str, *ret;
1079   GstCaps *tmp;
1080
1081   g_return_val_if_fail (caps != NULL, NULL);
1082   g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
1083   tmp = copy_and_clean_caps (caps);
1084   g_return_val_if_fail (gst_caps_is_fixed (tmp), NULL);
1085   gst_pb_utils_init_locale_text_domain ();
1086
1087   /* special-case RTP caps */
1088   if (caps_are_rtp_caps (tmp, "video", &str)) {
1089     ret = g_strdup_printf (_("%s video RTP payloader"), str);
1090   } else if (caps_are_rtp_caps (tmp, "audio", &str)) {
1091     ret = g_strdup_printf (_("%s audio RTP payloader"), str);
1092   } else if (caps_are_rtp_caps (tmp, "application", &str)) {
1093     ret = g_strdup_printf (_("%s RTP payloader"), str);
1094   } else {
1095     const FormatInfo *info;
1096
1097     str = gst_pb_utils_get_codec_description (tmp);
1098     info = find_format_info (tmp);
1099     if (info != NULL && (info->flags & FLAG_CONTAINER) != 0) {
1100       ret = g_strdup_printf (_("%s muxer"), str);
1101     } else {
1102       ret = g_strdup_printf (_("%s encoder"), str);
1103     }
1104   }
1105
1106   g_free (str);
1107   gst_caps_unref (tmp);
1108
1109   return ret;
1110 }
1111
1112 /**
1113  * gst_pb_utils_get_element_description:
1114  * @factory_name: the name of the element, e.g. "giosrc"
1115  *
1116  * Returns a localised string describing the given element, for use in
1117  * error dialogs or other messages to be seen by the user. Should never
1118  * return NULL unless @factory_name is invalid.
1119  *
1120  * This function is mainly for internal use, applications would typically
1121  * use gst_missing_plugin_message_get_description() to get a description of
1122  * a missing feature from a missing-plugin message.
1123  *
1124  * Returns: a newly-allocated description string, or NULL on error. Free
1125  *          string with g_free() when not needed any longer.
1126  */
1127 gchar *
1128 gst_pb_utils_get_element_description (const gchar * factory_name)
1129 {
1130   gchar *ret;
1131
1132   g_return_val_if_fail (factory_name != NULL, NULL);
1133
1134   gst_pb_utils_init_locale_text_domain ();
1135
1136   ret = g_strdup_printf (_("GStreamer element %s"), factory_name);
1137   if (ret && g_str_has_prefix (ret, factory_name))
1138     *ret = g_ascii_toupper (*ret);
1139
1140   return ret;
1141 }
1142
1143 /**
1144  * gst_pb_utils_add_codec_description_to_tag_list:
1145  * @taglist: a #GstTagList
1146  * @codec_tag: (allow-none): a GStreamer codec tag such as #GST_TAG_AUDIO_CODEC,
1147  *             #GST_TAG_VIDEO_CODEC or #GST_TAG_CODEC. If none is specified,
1148  *             the function will attempt to detect the appropriate category.
1149  * @caps: the (fixed) #GstCaps for which a codec tag should be added.
1150  *
1151  * Adds a codec tag describing the format specified by @caps to @taglist.
1152  *
1153  * Returns: TRUE if a codec tag was added, FALSE otherwise.
1154  */
1155 gboolean
1156 gst_pb_utils_add_codec_description_to_tag_list (GstTagList * taglist,
1157     const gchar * codec_tag, const GstCaps * caps)
1158 {
1159   const FormatInfo *info;
1160   gchar *desc;
1161
1162   g_return_val_if_fail (taglist != NULL, FALSE);
1163   g_return_val_if_fail (GST_IS_TAG_LIST (taglist), FALSE);
1164   g_return_val_if_fail (codec_tag == NULL || (gst_tag_exists (codec_tag)
1165           && gst_tag_get_type (codec_tag) == G_TYPE_STRING), FALSE);
1166   g_return_val_if_fail (caps != NULL, FALSE);
1167   g_return_val_if_fail (GST_IS_CAPS (caps), FALSE);
1168
1169   info = find_format_info (caps);
1170   if (info == NULL)
1171     return FALSE;
1172
1173   /* Attempt to find tag classification */
1174   if (codec_tag == NULL) {
1175     if (info->flags & FLAG_CONTAINER)
1176       codec_tag = GST_TAG_CONTAINER_FORMAT;
1177     else if (info->flags & FLAG_AUDIO)
1178       codec_tag = GST_TAG_AUDIO_CODEC;
1179     else if (info->flags & FLAG_VIDEO)
1180       codec_tag = GST_TAG_VIDEO_CODEC;
1181     else if (info->flags & FLAG_SUB)
1182       codec_tag = GST_TAG_SUBTITLE_CODEC;
1183     else
1184       codec_tag = GST_TAG_CODEC;
1185   }
1186
1187   desc = format_info_get_desc (info, caps);
1188   gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, codec_tag, desc, NULL);
1189   g_free (desc);
1190
1191   return TRUE;
1192 }
1193
1194 /**
1195  * gst_pb_utils_get_codec_description:
1196  * @caps: the (fixed) #GstCaps for which an format description is needed
1197  *
1198  * Returns a localised (as far as this is possible) string describing the
1199  * media format specified in @caps, for use in error dialogs or other messages
1200  * to be seen by the user. Should never return NULL unless @caps is invalid.
1201  *
1202  * Also see the convenience function
1203  * gst_pb_utils_add_codec_description_to_tag_list().
1204  *
1205  * Returns: a newly-allocated description string, or NULL on error. Free
1206  *          string with g_free() when not needed any longer.
1207  */
1208 gchar *
1209 gst_pb_utils_get_codec_description (const GstCaps * caps)
1210 {
1211   const FormatInfo *info;
1212   gchar *str, *comma;
1213   GstCaps *tmp;
1214
1215   g_return_val_if_fail (caps != NULL, NULL);
1216   g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
1217   tmp = copy_and_clean_caps (caps);
1218   g_return_val_if_fail (gst_caps_is_fixed (tmp), NULL);
1219
1220   info = find_format_info (tmp);
1221
1222   if (info) {
1223     str = format_info_get_desc (info, tmp);
1224   } else {
1225     str = gst_caps_to_string (tmp);
1226
1227     /* cut off everything after the media type, if there is anything */
1228     if ((comma = strchr (str, ','))) {
1229       *comma = '\0';
1230       g_strchomp (str);
1231       /* we could do something more elaborate here, like taking into account
1232        * audio/, video/, image/ and application/ prefixes etc. */
1233     }
1234
1235     GST_WARNING ("No description available for media type: %s", str);
1236   }
1237   gst_caps_unref (tmp);
1238
1239   return str;
1240 }
1241
1242 /* internal helper functions for gst_encoding_profile_get_file_extension() */
1243 const gchar *pb_utils_get_file_extension_from_caps (const GstCaps * caps);
1244 gboolean pb_utils_is_tag (const GstCaps * caps);
1245
1246 const gchar *
1247 pb_utils_get_file_extension_from_caps (const GstCaps * caps)
1248 {
1249   const FormatInfo *info;
1250   const gchar *ext = NULL;
1251   GstCaps *stripped_caps;
1252
1253   g_assert (GST_IS_CAPS (caps));
1254
1255   stripped_caps = copy_and_clean_caps (caps);
1256
1257   g_assert (gst_caps_is_fixed (stripped_caps));
1258
1259   info = find_format_info (stripped_caps);
1260
1261   if (info && info->ext[0] != '\0') {
1262     ext = info->ext;
1263   } else if (info && info->desc == NULL) {
1264     const GstStructure *s;
1265
1266     s = gst_caps_get_structure (stripped_caps, 0);
1267
1268     /* cases where we have to evaluate the caps more closely */
1269     if (strcmp (info->type, "audio/mpeg") == 0) {
1270       int version = 0, layer = 3;
1271
1272       if (gst_structure_get_int (s, "mpegversion", &version)) {
1273         if (version == 2 || version == 4) {
1274           ext = "aac";
1275         } else if (version == 1) {
1276           gst_structure_get_int (s, "layer", &layer);
1277           if (layer == 1)
1278             ext = "mp1";
1279           else if (layer == 2)
1280             ext = "mp2";
1281           else
1282             ext = "mp3";
1283         }
1284       }
1285     }
1286   }
1287
1288   gst_caps_unref (stripped_caps);
1289   return ext;
1290 }
1291
1292 /**
1293  * gst_pb_utils_get_file_extension_from_caps:
1294  * @caps: the (fixed) #GstCaps for which a file extension is needed
1295  *
1296  * Returns a possible file extension for the given caps, if known.
1297  *
1298  * Returns: (nullable): a newly-allocated file extension string, or NULL on error. Free
1299  *          string with g_free() when not needed any longer.
1300  *
1301  * Since: 1.20
1302  */
1303 gchar *
1304 gst_pb_utils_get_file_extension_from_caps (const GstCaps * caps)
1305 {
1306   return g_strdup (pb_utils_get_file_extension_from_caps (caps));
1307 }
1308
1309 /**
1310  * gst_pb_utils_get_caps_description_flags:
1311  * @caps: the (fixed) #GstCaps for which flags are requested
1312  *
1313  * Returns flags that describe the format of the caps if known. No flags are
1314  * set for unknown caps.
1315  *
1316  * Returns: #GstPbUtilsCapsDescriptionFlags that describe @caps, or no flags
1317  *          if the caps are unknown.
1318  *
1319  * Since: 1.20
1320  */
1321 GstPbUtilsCapsDescriptionFlags
1322 gst_pb_utils_get_caps_description_flags (const GstCaps * caps)
1323 {
1324   GstCaps *tmp;
1325   const FormatInfo *info;
1326   GstPbUtilsCapsDescriptionFlags flags = 0;
1327
1328   g_return_val_if_fail (caps != NULL, 0);
1329   g_return_val_if_fail (GST_IS_CAPS (caps), 0);
1330   tmp = copy_and_clean_caps (caps);
1331   g_return_val_if_fail (gst_caps_is_fixed (tmp), 0);
1332
1333   info = find_format_info (tmp);
1334   /* A separate flags type is used because internally more flags are needed
1335    * for filtering purposes, e.g. the SYSTEMSTREAM flag */
1336   if (info) {
1337     if ((info->flags & FLAG_CONTAINER))
1338       flags |= GST_PBUTILS_CAPS_DESCRIPTION_FLAG_CONTAINER;
1339     if ((info->flags & FLAG_AUDIO))
1340       flags |= GST_PBUTILS_CAPS_DESCRIPTION_FLAG_AUDIO;
1341     if ((info->flags & FLAG_VIDEO))
1342       flags |= GST_PBUTILS_CAPS_DESCRIPTION_FLAG_VIDEO;
1343     if ((info->flags & FLAG_IMAGE))
1344       flags |= GST_PBUTILS_CAPS_DESCRIPTION_FLAG_IMAGE;
1345     if ((info->flags & FLAG_SUB))
1346       flags |= GST_PBUTILS_CAPS_DESCRIPTION_FLAG_SUBTITLE;
1347     if ((info->flags & FLAG_TAG))
1348       flags |= GST_PBUTILS_CAPS_DESCRIPTION_FLAG_TAG;
1349     if ((info->flags & FLAG_GENERIC))
1350       flags |= GST_PBUTILS_CAPS_DESCRIPTION_FLAG_GENERIC;
1351     if ((info->flags & FLAG_METADATA))
1352       flags |= GST_PBUTILS_CAPS_DESCRIPTION_FLAG_METADATA;
1353   }
1354
1355   gst_caps_unref (tmp);
1356
1357   return flags;
1358 }
1359
1360 gboolean
1361 pb_utils_is_tag (const GstCaps * caps)
1362 {
1363   const FormatInfo *info;
1364   GstCaps *stripped_caps;
1365   gboolean is_tag = FALSE;
1366
1367   g_assert (GST_IS_CAPS (caps));
1368
1369   stripped_caps = copy_and_clean_caps (caps);
1370
1371   g_assert (gst_caps_is_fixed (stripped_caps));
1372
1373   info = find_format_info (stripped_caps);
1374
1375   if (info) {
1376     is_tag = (info->flags & FLAG_TAG) != 0;
1377   }
1378   gst_caps_unref (stripped_caps);
1379
1380   return is_tag;
1381 }
1382
1383 #if 0
1384 void
1385 gst_pb_utils_list_all (void)
1386 {
1387   gint i;
1388
1389   g_print ("static const gchar *caps_strings[] = { ");
1390
1391   for (i = 0; i < G_N_ELEMENTS (formats); ++i) {
1392     if (formats[i].desc != NULL)
1393       g_print ("  \"%s\", ", formats[i].type);
1394   }
1395   g_print ("\n#if 0\n");
1396   for (i = 0; i < G_N_ELEMENTS (formats); ++i) {
1397     if (formats[i].desc == NULL)
1398       g_print ("  \"%s\", \n", formats[i].type);
1399   }
1400   g_print ("\n#endif\n");
1401 }
1402 #endif