Displaying 5 results from an estimated 5 matches for "mpegversion".
2020 Aug 13
0
GT215 hw video decoder + gst-play-1.0 for mpeg2 = assertion
...tream=(boolean)true, packetsize=(int)188
/GstPlayBin:playbin/GstURIDecodeBin:uridecodebin0/GstDecodeBin:decodebin0/GstTypeFindElement:typefind.GstPad:src: caps = NULL
/GstPlayBin:playbin/GstURIDecodeBin:uridecodebin0/GstDecodeBin:decodebin0/GstMultiQueue:multiqueue0.GstPad:src_0: caps = video/mpeg, mpegversion=(int)2, systemstream=(boolean)false
/GstPlayBin:playbin/GstURIDecodeBin:uridecodebin0/GstDecodeBin:decodebin0/GstMpegvParse:mpegvparse0.GstPad:sink: caps = video/mpeg, mpegversion=(int)2, systemstream=(boolean)false
/GstPlayBin:playbin/GstURIDecodeBin:uridecodebin0/GstDecodeBin:decodebin0/GstMultiQ...
2019 Oct 07
3
Centos & media codec
Hello im trying to play some videos with totem on CentOS 8.
I get the following message in the command line.
"totem
** Message: 17:22:06.269: Missing plugin: gstreamer|1.0|totem|MPEG-1
Video decoder|decoder-video/mpeg, mpegversion=(int)1,
systemstream=(boolean)false (MPEG-1 Video decoder)
(totem:12230): Gtk-WARNING **: 17:22:06.270: Drawing a gadget with
negative dimensions. Did you forget to allocate a size? (node slider
owner GtkScale)
"
I also get the following message.
MPEG-4 Video (Simple Profile) decoder is req...
2019 Oct 08
0
Centos & media codec
On 07/10/2019 17:26, Georgios wrote:
> Hello im trying to play some videos with totem on CentOS 8.
> 
> I get the following message in the command line.
> 
> "totem
> ** Message: 17:22:06.269: Missing plugin: gstreamer|1.0|totem|MPEG-1
> Video decoder|decoder-video/mpeg, mpegversion=(int)1,
> systemstream=(boolean)false (MPEG-1 Video decoder)
> 
> (totem:12230): Gtk-WARNING **: 17:22:06.270: Drawing a gadget with
> negative dimensions. Did you forget to allocate a size? (node slider
> owner GtkScale)
> "
> 
> I also get the following message.
>...
2007 Oct 26
0
6 commits - configure.ac libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec_video.c player/swfplay.c
...layer;
-  GstElement *fakesrc, *fakesink, *decoder, *convert;
-  GstBus *bus;
-  GstCaps *caps;
+  GstCaps *srccaps, *sinkcaps;
 
   if (!gst_init_check (NULL, NULL, NULL))
     return NULL;
 
   switch (type) {
     case SWFDEC_AUDIO_CODEC_MP3:
-      caps = gst_caps_from_string ("audio/mpeg, mpegversion=(int)1, layer=(int)3");
+      srccaps = gst_caps_from_string ("audio/mpeg, mpegversion=(int)1, layer=(int)3");
       break;
     default:
       return NULL;
   }
-  g_assert (caps);
+  g_assert (srccaps);
 
   player = g_slice_new0 (SwfdecGstAudio);
   player->decoder.format =...
2007 Apr 08
0
libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_gst.c
...format)
+{
+  SwfdecGstAudio *player;
+  GstElement *fakesrc, *fakesink, *decoder, *convert;
+  GstBus *bus;
+  GstCaps *caps;
+
+  if (!gst_init_check (NULL, NULL, NULL))
+    return NULL;
+
+  switch (type) {
+    case SWFDEC_AUDIO_FORMAT_MP3:
+      caps = gst_caps_from_string ("audio/mpeg, mpegversion=(int)1, layer=(int)3");
+      break;
+    default:
+      return NULL;
+  }
+  g_assert (caps);
+
+  player = g_slice_new0 (SwfdecGstAudio);
+  player->decoder.out_format = SWFDEC_AUDIO_OUT_STEREO_44100;
+  player->decoder.pull = swfdec_audio_decoder_gst_pull;
+  player->decoder.push...