Move GstAggregator from -bad to core
[platform/upstream/gstreamer.git] / docs / random / omega / caps3
1  /* fake mp3 where bitrates 8 through 32 can't be stereo */
2 static GstCapsListFactory mpg123_sink_caps = {
3   {
4     "audio/mp3",
5     "layer",    GST_CAPS_INT_RANGE (1, 3),
6     "bitrate",  GST_CAPS_INT_RANGE (32, 320),
7     "channels", GST_CAPS_INT_RANGE (1, 2),
8     "framed",   GST_CAPS_BOOLEAN (TRUE),
9     NULL
10   },
11   {
12     "audio/mp3",
13     "layer",    GST_CAPS_INT_RANGE (1, 3),
14     "bitrate",  GST_CAPS_INT_RANGE (8, 32),
15     "channels", GST_CAPS_INT_RANGE (1),
16     "framed",   GST_CAPS_BOOLEAN (TRUE),
17     NULL
18   },
19   NULL
20 };