Jump to content


Photo

GStreamer 1.0

gstreamer 1.0 openpli

  • Please log in to reply
2520 replies to this topic

Re: GStreamer 1.0 #681 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 14 March 2015 - 14:48

But athoik, it was already working on the dm800se? Whats broken that needs to be fixed ?


Dreambox and VU use differect ioctl for some codecs.
Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23.5E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Re: GStreamer 1.0 #682 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 14 March 2015 - 16:15

Here the patch now the defines in capital in code.

 

Video dreambox vuplus idem.

Audio vuplus like pli4 generic (only do not set  the --with-wma config parametr as vuplus uses software codecs for wma audio)

Audio dreambox adapted to list of athoik. Not tested by me but should work)

 

For vuplus set the configs

 

DVBMEDIASINK_CONFIG = "--with-vuplus --with-pcm --with-dtsdownmix --with-eac3 --with-amr --with-wmv"

 

For dreambox use :

 

DVBMEDIASINK_CONFIG = "--with-dreambox --with-pcm --with-eac3 --with-amr --with-wmv --with-wma and ..." I don't know all correct settings for dreambox yet. But I gues there was also something with limited mpeg4 or so.

 

Here the patch contains the eos from mx3l and my adpatations for vuplus and dreambox

 

Its trunk ready for vuplus dvbmediasink gst-1.0 branch dreambox needs well first to be tested

Attached Files


Edited by christophecvr, 14 March 2015 - 16:16.


Re: GStreamer 1.0 #683 betacentauri

  • PLi® Core member
  • 7,185 posts

+323
Excellent

Posted 14 March 2015 - 18:02

If you playback a mkv with 2 audio streams you see in audio menu one correct entry and one "undetermined" entry.

I tried to debug it. I have listed all available tags for a stream:

eServiceMP3::async-done - 1 video, 2 audio, 0 subtitle
AUDIO STRUCT=audio/x-dts
stream 0 tagcount 5
stream 0 tag name audio-codec
stream 0 tag name container-format
stream 0 tag name minimum-bitrate
stream 0 tag name bitrate
stream 0 tag name maximum-bitrate
eServiceMP3::audio stream=0 codec=DTS language=und
AUDIO STRUCT=audio/x-dts
stream 1 tagcount 6
stream 1 tag name audio-codec
stream 1 tag name language-code
stream 1 tag name container-format
stream 1 tag name minimum-bitrate
stream 1 tag name bitrate
stream 1 tag name maximum-bitrate
eServiceMP3::audio stream=1 codec=DTS language=de

As you can see the language-code tag is missing in stream 0.

Afaik in gstreamer 0.10 it works. I tried to find out whether something has changed in 1.0, but I can't find anything.

 

With mediainfo you can see that the language of the other stream is english. So it's not missing in the mkv.

Can someone confirm this? Does someone have an idea how to fix it?

It could also be a gstreamer bug.

 

P.S: I think subtitles have a similar problem. I only saw wrong values, but haven't debugged it yet.


Xtrend ET-9200, ET-8000, ET-10000, OpenPliPC on Ubuntu 12.04

Re: GStreamer 1.0 #684 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 14 March 2015 - 18:34

I don't what that can be.

 

But now i(ve tested for my dm8000. Audio not ok. problem x-raw does not work on dm8000 . 0xf seems to be wrong by pass by dm 8000



Re: GStreamer 1.0 #685 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 14 March 2015 - 18:45

I don't what that can be.
 
But now i(ve tested for my dm8000. Audio not ok. problem x-raw does not work on dm8000 . 0xf seems to be wrong by pass by dm 8000


0xf is the correct one, but it requires changes in header (eg BCMA..)

http://schwerkraft.elitedvb.net/plugins/scmgit/cgi-bin/gitweb.cgi?p=dvbmediasink/dvbmediasink.git;a=blob;f=src/gstdvbaudiosink.c;h=a229e6366051a21886db90ce4e4a63abb48e1a1e;hb=HEAD#l995

 995         else if (!strcmp(type, "audio/x-raw-int")) {
 996                 GST_INFO_OBJECT (self, "MIMETYPE %s",type);
 997                 bypass = 0xf;
 998                 gint block_align, width, rate, depth, channels, bitrate;
 999                 gst_structure_get_int (structure, "channels", &channels);
1000                 gst_structure_get_int (structure, "rate", &rate);
1001                 gst_structure_get_int (structure, "width", &width);
1002                 gst_structure_get_int (structure, "depth", &depth);
1003                 // calc size of pcm data for 30ms
1004                 self->block_align = rate * 30 / 1000;
1005                 self->block_align *= channels * depth / 8;
1006                 block_align = channels * width / 8;
1007                 bitrate = channels * rate * width;
1008                 self->temp_offset = 18+8;
1009                 self->temp_buffer = gst_buffer_new_and_alloc(self->temp_offset+self->block_align);
1010                 guint8 *d = GST_BUFFER_DATA(self->temp_buffer);
1011                 memcpy(d, "BCMA", 4);
1012                 d[4] = (self->block_align & 0xFF000000) >> 24;
1013                 d[5] = (self->block_align & 0xFF0000) >> 16;
1014                 d[6] = (self->block_align & 0xFF00) >> 8;
1015                 d[7] = (self->block_align & 0xFF);
1016                 // rebuild WAVFORMAT
1017                 d[8] = 0x01; // format tag
1018                 d[9] = 0x00;
1019                 d[10] = channels & 0xFF;
1020                 d[11] = (channels >> 8) & 0xFF;
1021                 d[12] = rate & 0xFF; // sample rate
1022                 d[13] = (rate & 0xFF00) >> 8;
1023                 d[14] = (rate & 0xFF0000) >> 16;
1024                 d[15] = (rate & 0xFF000000) >> 24;
1025                 d[16] = (bitrate >> 3) & 0xFF; // byte rate
1026                 d[17] = (bitrate >> 11) & 0xFF;
1027                 d[18] = (bitrate >> 19) & 0xFF;
1028                 d[19] = (bitrate >> 27) & 0xFF;
1029                 d[20] = block_align & 0xFF; // block align
1030                 d[21] = (block_align >> 8) & 0xFF;
1031                 d[22] = depth & 0xFF; // word size
1032                 d[23] = (depth >> 8) & 0xFF;
1033                 d[24] = 0; // codec data len
1034                 d[25] = 0;

Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23.5E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Re: GStreamer 1.0 #686 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 14 March 2015 - 18:58

Yes quit possible. I'll will look on that tommorow. Wit the #ifdef DREAMBOX or #if defined(DREAMBOX)  must be possible to arrange.



Re: GStreamer 1.0 #687 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 14 March 2015 - 19:02

If you playback a mkv with 2 audio streams you see in audio menu one correct entry and one "undetermined" entry.

I tried to debug it. I have listed all available tags for a stream:

eServiceMP3::async-done - 1 video, 2 audio, 0 subtitle
AUDIO STRUCT=audio/x-dts
stream 0 tagcount 5
stream 0 tag name audio-codec
stream 0 tag name container-format
stream 0 tag name minimum-bitrate
stream 0 tag name bitrate
stream 0 tag name maximum-bitrate
eServiceMP3::audio stream=0 codec=DTS language=und
AUDIO STRUCT=audio/x-dts
stream 1 tagcount 6
stream 1 tag name audio-codec
stream 1 tag name language-code
stream 1 tag name container-format
stream 1 tag name minimum-bitrate
stream 1 tag name bitrate
stream 1 tag name maximum-bitrate
eServiceMP3::audio stream=1 codec=DTS language=de

As you can see the language-code tag is missing in stream 0.

Afaik in gstreamer 0.10 it works. I tried to find out whether something has changed in 1.0, but I can't find anything.

 

With mediainfo you can see that the language of the other stream is english. So it's not missing in the mkv.

Can someone confirm this? Does someone have an idea how to fix it?

It could also be a gstreamer bug.

 

P.S: I think subtitles have a similar problem. I only saw wrong values, but haven't debugged it yet.

Yes there where some changes with language in plugins-enigma2 . and also in main openpli-git. I think that they should merge the current master git changes with gst-1. Then it's possible it works again.

 

That's I wild gues not shure about that.



Re: GStreamer 1.0 #688 betacentauri

  • PLi® Core member
  • 7,185 posts

+323
Excellent

Posted 14 March 2015 - 22:27

One subtitle bug is solved. Gstreamer 1.x uses subpicture/x-dvd and not video/x-dvd-subpicture.

Attached Files


Xtrend ET-9200, ET-8000, ET-10000, OpenPliPC on Ubuntu 12.04

Re: GStreamer 1.0 #689 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 15 March 2015 - 00:25

For dm8000 problem found but how to solve ???

 

It unfortunately uses alsasink0. It even does not try to use the PCMCAPS.

root@dm8000:/media/VIDAUD# gst-launch-1.0 --gst-debug basesink:6,dvbaudiosink:5 playbin uri=file:///media/VIDAUD/Front_Right.flac
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
WARNING: from element /GstPlayBin:playbin0/GstPlaySink:playsink: No volume control found
Additional debug info:
/home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0-plugins-base/1.4.5-r0/gst-plugins-base-1.4.5/gst/playback/gstplaysink.c(2862): gen_audio_chain (): /GstPlayBin:playbin0/GstPlaySink:playsink:
Volume/mute is not available
0:00:00.938496297 27862 0x76932380 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4908:gst_base_sink_change_state:<alsasink0> READY to PAUSED
0:00:00.939356445 27862 0x76932380 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4929:gst_base_sink_change_state:<alsasink0> doing async state change
0:00:00.939873223 27862 0x76932380 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4074:gst_base_sink_pad_activate:<alsasink0> Trying pull mode first
0:00:00.940119185 27862 0x76932380 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4080:gst_base_sink_pad_activate:<alsasink0> pull mode disabled
0:00:00.940413593 27862 0x76932380 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4130:gst_base_sink_pad_activate:<alsasink0> Falling back to push mode
0:00:00.940656223 27862 0x76932380 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4132:gst_base_sink_pad_activate:<alsasink0> Success activating push mode
0:00:00.949149889 27862 0x754028c0 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<alsasink0> received event 0x76905068 stream-start event: 0x76905068, time 99:99:99.999999999, seq-num 47, GstEventStreamStart, stream-id=(string)d162b8a30a3484a4a1d892fad6cd4a238f0e800b147d25b26f591b1c75eb2ca4, flags=(GstStreamFlags)GST_STREAM_FLAG_NONE, group-id=(uint)1;
0:00:00.950186556 27862 0x754028c0 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3057:gst_base_sink_default_event:<alsasink0> Now posting STREAM_START (seqnum:47)
0:00:01.086977186 27862 0x754028c0 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<alsasink0> received event 0x754212a0 caps event: 0x754212a0, time 99:99:99.999999999, seq-num 167, GstEventCaps, caps=(GstCaps)"audio/x-raw\,\ format\=\(string\)S16LE\,\ layout\=\(string\)interleaved\,\ rate\=\(int\)48000\,\ channels\=\(int\)1";
0:00:01.087620371 27862 0x754028c0 DEBUG               basesink /home/christophe/openpli40-gst1/openpli-oe-core/build/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r0/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3074:gst_base_sink_default_event:<alsasink0> caps 0x754212a0
Illegal instruction

The Illegal instruction is logic like that.



Re: GStreamer 1.0 #690 athoik

  • PLi® Core member
  • 8,458 posts

+327
Excellent

Posted 15 March 2015 - 08:51

Did you enable PCM ? (--with-pcm)
Wavefield T90: 0.8W - 1.9E - 4.8E - 13E - 16E - 19.2E - 23.5E - 26E - 33E - 39E - 42E - 45E on EMP Centauri DiseqC 16/1
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916

Re: GStreamer 1.0 #691 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 15 March 2015 - 10:05

Did you enable PCM ? (--with-pcm)

Now I forgot that.  But discovered it this morning.

 

Still it runs the wav file now but no sound. Think there is still something which must be changed in pes_header. That's what I try do find out now.



Re: GStreamer 1.0 #692 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 15 March 2015 - 11:47

Ok working now for dreambox also like by vu.

 

dvbmediasink config for dreambox (dm8000) other dm types needs to be tested by users

DVBMEDIASINK_CONFIG = "--with-dreambox --with-pcm --with-wmv --with-dtsdownmix --with-eac3 --with-amr --with-limited-mpeg4v2"

plays . MP4,MPEG,WMV wvc1,wmv 3 not but could be box self which can't handle streamtype 17,

plays mp3,wav,ogg,flac,wma and ... all what software codecs can do.

 

Here the patch file

Attached Files


Edited by christophecvr, 15 March 2015 - 11:48.


Re: GStreamer 1.0 #693 babsy98

  • Senior Member
  • 166 posts

+18
Neutral

Posted 15 March 2015 - 12:31

thanks all for the great work on vu and dm gst 1.45

 

i have build one test image for vu zero

 

i have test m2ts with dts and ac3 works

wmv/wma works

dvd vob files works

mkw with ac3

 

 

small issue avi files i have only audio no video
 

gst-launch-1.0 --gst-debug basesink:6,dvbaudiosink:5 playbin uri=file:///media/hdd/avi/dowhdldvd-s02e07.avi
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
0:00:00.703462111 [335m 2044[00m 0x7698e7b0 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:827:gst_base_sink_set_async_enabled:<GstDVBVideoSink@0x75410390>[00m set async enabled to 1
0:00:00.705935444 [335m 2044[00m 0x7698e7b0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/mpeg, mpegversion=(int)4, systemstream=(boolean)false, framerate=(fraction)25/1, width=(int)640, height=(int)352 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:00.709043000 [335m 2044[00m 0x7698e7b0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, codec_data=(buffer)010001000000a20101000000 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.725533407 [335m 2044[00m 0x7698e7b0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, codec_data=(buffer)010002000000b00101000000 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.805137963 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, mpegaudioversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, parsed=(boolean)true are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.808442703 [335m 2044[00m 0x75407c30 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, mpegaudioversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, parsed=(boolean)true are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.817034666 [335m 2044[00m 0x75407980 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:827:gst_base_sink_set_async_enabled:<GstDVBAudioSink@0x7542d9f0>[00m set async enabled to 1
0:00:00.820103333 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1523:gst_dvbaudiosink_change_state:<dvbaudiosink0>[00m GST_STATE_CHANGE_NULL_TO_READY
0:00:00.820474222 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1421:gst_dvbaudiosink_start:<dvbaudiosink0>[00m start
0:00:00.824293481 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, mpegaudioversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, parsed=(boolean)true are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 1
0:00:00.829486037 [335m 2044[00m 0x75407c30 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, mpegaudioversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, parsed=(boolean)true are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 1
0:00:00.872144777 [335m 2044[00m 0x75407980 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:827:gst_base_sink_set_async_enabled:<dvbvideosink0>[00m set async enabled to 1
0:00:00.908612185 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4908:gst_base_sink_change_state:<dvbvideosink0>[00m READY to PAUSED
0:00:00.909008148 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4929:gst_base_sink_change_state:<dvbvideosink0>[00m doing async state change
0:00:00.909472111 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4074:gst_base_sink_pad_activate:<dvbvideosink0>[00m Trying pull mode first
0:00:00.909724740 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4080:gst_base_sink_pad_activate:<dvbvideosink0>[00m pull mode disabled
0:00:00.909975185 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4130:gst_base_sink_pad_activate:<dvbvideosink0>[00m Falling back to push mode
0:00:00.910172740 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4132:gst_base_sink_pad_activate:<dvbvideosink0>[00m Success activating push mode
WARNING: from element /GstPlayBin:playbin0/GstPlaySink:playsink: No volume control found
Additional debug info:
/home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0-plugins-base/1.4.5-r0/gst-plugins-base-1.4.5/gst/playback/gstplaysink.c(2862): gen_audio_chain (): /GstPlayBin:playbin0/GstPlaySink:playsink:
Volume/mute is not available
0:00:01.013243037 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1526:gst_dvbaudiosink_change_state:<dvbaudiosink0>[00m GST_STATE_CHANGE_READY_TO_PAUSED
0:00:01.020137592 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4908:gst_base_sink_change_state:<dvbaudiosink0>[00m READY to PAUSED
0:00:01.020427518 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4929:gst_base_sink_change_state:<dvbaudiosink0>[00m doing async state change
0:00:01.020858370 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4074:gst_base_sink_pad_activate:<dvbaudiosink0>[00m Trying pull mode first
0:00:01.021889111 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4080:gst_base_sink_pad_activate:<dvbaudiosink0>[00m pull mode disabled
0:00:01.022219370 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4130:gst_base_sink_pad_activate:<dvbaudiosink0>[00m Falling back to push mode
0:00:01.022404037 [335m 2044[00m 0x75407980 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4132:gst_base_sink_pad_activate:<dvbaudiosink0>[00m Success activating push mode
0:00:01.037169629 [335m 2044[00m 0x75407980 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:870:gst_base_sink_set_ts_offset:<dvbaudiosink0>[00m set time offset to 0
0:00:01.037631074 [335m 2044[00m 0x75407980 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:870:gst_base_sink_set_ts_offset:<dvbvideosink0>[00m set time offset to 0
0:00:01.039134629 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x76905070 stream-start event: 0x76905070, time 99:99:99.999999999, seq-num 43, GstEventStreamStart, stream-id=(string)c5e3105081ebc55583ef7233124a3e6d6dc59da3906772615b945aca24fb8089/001, flags=(GstStreamFlags)GST_STREAM_FLAG_NONE, group-id=(uint)1;
0:00:01.039639259 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3057:gst_base_sink_default_event:<dvbvideosink0>[00m Now posting STREAM_START (seqnum:43)
0:00:01.047117740 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/mpeg, mpegversion=(int)4, systemstream=(boolean)false, framerate=(fraction)25/1, width=(int)640, height=(int)352 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:01.050079444 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbaudiosink0>[00m received event 0x76905100 stream-start event: 0x76905100, time 99:99:99.999999999, seq-num 45, GstEventStreamStart, stream-id=(string)c5e3105081ebc55583ef7233124a3e6d6dc59da3906772615b945aca24fb8089/002, flags=(GstStreamFlags)GST_STREAM_FLAG_NONE, group-id=(uint)1;
0:00:01.050574777 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:775:gst_dvbaudiosink_event:<dvbaudiosink0>[00m EVENT stream-start
0:00:01.049426444 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/mpeg, mpegversion=(int)4, systemstream=(boolean)false, framerate=(fraction)25/1, width=(int)640, height=(int)352 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:01.050895370 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3057:gst_base_sink_default_event:<dvbaudiosink0>[00m Now posting STREAM_START (seqnum:45)
0:00:01.053063666 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/mpeg, mpegversion=(int)4, systemstream=(boolean)false, framerate=(fraction)25/1, width=(int)640, height=(int)352 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:01.056326740 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/mpeg, mpegversion=(int)4, systemstream=(boolean)false, framerate=(fraction)25/1, width=(int)640, height=(int)352 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:01.058001851 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x515330 caps event: 0x515330, time 99:99:99.999999999, seq-num 280, GstEventCaps, caps=(GstCaps)"video/mpeg\,\ mpegversion\=\(int\)4\,\ systemstream\=\(boolean\)false\,\ framerate\=\(fraction\)25/1\,\ width\=\(int\)640\,\ height\=\(int\)352";
0:00:01.073263555 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x75e04898 segment event: 0x75e04898, time 99:99:99.999999999, seq-num 123, GstEventSegment, segment=(GstSegment)"GstSegment, flags=(GstSegmentFlags)GST_SEGMENT_FLAG_NONE, rate=(double)1, applied-rate=(double)1, format=(GstFormat)GST_FORMAT_TIME, base=(guint64)0, offset=(guint64)0, start=(guint64)0, stop=(guint64)18446744073709551615, time=(guint64)0, position=(guint64)0, duration=(guint64)2772000000000;";
0:00:01.074693407 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x75408240 tag event: 0x75408240, time 99:99:99.999999999, seq-num 124, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)MPEG-4\;";
0:00:01.076705629 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x769052f8 tag event: 0x769052f8, time 99:99:99.999999999, seq-num 127, GstTagList-global, taglist=(taglist)"taglist\,\ encoder\=\(string\)\"Nandub\\\ v1.0rc2\"\,\ container-format\=\(string\)AVI\;";
0:00:01.079043814 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3334:gst_base_sink_chain_unlocked:<dvbvideosink0>[00m got times start: 0:00:00.000000000, end: 0:00:00.040000000
0:00:01.079533851 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1902:gst_base_sink_get_sync_times:<dvbvideosink0>[00m got times start: 0:00:00.000000000, stop: 0:00:00.040000000, do_sync 1
0:00:01.081974222 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:2201:gst_base_sink_do_preroll:<dvbvideosink0>[00m prerolling object 0x75402ae0
0:00:01.082465925 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:936:gst_base_sink_set_last_buffer_unlocked:<dvbvideosink0>[00m setting last buffer to 0x75402ae0
0:00:01.082760592 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:2220:gst_base_sink_do_preroll:<dvbvideosink0>[00m preroll buffer 0:00:00.000000000
0:00:01.083228814 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1455:gst_base_sink_commit_state:<dvbvideosink0>[00m commiting state to PAUSED
0:00:01.083451555 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1480:gst_base_sink_commit_state:<dvbvideosink0>[00m posting PAUSED state change message
0:00:01.084399222 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1486:gst_base_sink_commit_state:<dvbvideosink0>[00m posting async-done message
0:00:01.092103296 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, mpegaudioversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, parsed=(boolean)true are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 1
0:00:01.098474925 [335m 2044[00m 0x75422200 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:2154:gst_base_sink_wait_preroll:<dvbvideosink0>[00m waiting in preroll for flush or PLAYING
0:00:01.101547259 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, mpegaudioversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, parsed=(boolean)true are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 1
0:00:01.112922259 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, mpegaudioversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, parsed=(boolean)true are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 1
0:00:01.116777222 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink0>[00m Checking if requested caps audio/mpeg, mpegversion=(int)1, mpegaudioversion=(int)1, layer=(int)3, rate=(int)48000, channels=(int)2, parsed=(boolean)true are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 1
0:00:01.119602259 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbaudiosink0>[00m received event 0x751550e0 caps event: 0x751550e0, time 99:99:99.999999999, seq-num 300, GstEventCaps, caps=(GstCaps)"audio/mpeg\,\ mpegversion\=\(int\)1\,\ mpegaudioversion\=\(int\)1\,\ layer\=\(int\)3\,\ rate\=\(int\)48000\,\ channels\=\(int\)2\,\ parsed\=\(boolean\)true";
0:00:01.120372333 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:775:gst_dvbaudiosink_event:<dvbaudiosink0>[00m EVENT caps
0:00:01.120656481 [335m 2044[00m 0x75422400 [36mINFO   [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:462:gst_dvbaudiosink_set_caps:<dvbaudiosink0>[00m MIMETYPE audio/mpeg version 1 layer 3
0:00:01.121588740 [335m 2044[00m 0x75422400 [36mINFO   [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:753:gst_dvbaudiosink_set_caps:<dvbaudiosink0>[00m setting dvb mode 0x0a

0:00:01.142190962 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3074:gst_base_sink_default_event:<dvbaudiosink0>[00m caps 0x751550e0
0:00:01.142772666 [335m 2044[00m 0x75422400 [36mINFO   [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:462:gst_dvbaudiosink_set_caps:<dvbaudiosink0>[00m MIMETYPE audio/mpeg version 1 layer 3
0:00:01.143201185 [335m 2044[00m 0x75422400 [36mINFO   [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:753:gst_dvbaudiosink_set_caps:<dvbaudiosink0>[00m setting dvb mode 0x0a

0:00:01.207280444 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbaudiosink0>[00m received event 0x7542a970 segment event: 0x7542a970, time 99:99:99.999999999, seq-num 123, GstEventSegment, segment=(GstSegment)"GstSegment, flags=(GstSegmentFlags)GST_SEGMENT_FLAG_NONE, rate=(double)1, applied-rate=(double)1, format=(GstFormat)GST_FORMAT_TIME, base=(guint64)0, offset=(guint64)0, start=(guint64)0, stop=(guint64)18446744073709551615, time=(guint64)0, position=(guint64)0, duration=(guint64)2772000000000;";
0:00:01.208521851 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:775:gst_dvbaudiosink_event:<dvbaudiosink0>[00m EVENT segment
0:00:01.209166036 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:879:gst_dvbaudiosink_event:<dvbaudiosink0>[00m GST_EVENT_NEWSEGMENT rate=1.000000 3

0:00:01.209950111 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbaudiosink0>[00m received event 0x75427890 tag event: 0x75427890, time 99:99:99.999999999, seq-num 155, GstTagList-stream, taglist=(taglist)"taglist\,\ has-crc\=\(boolean\)false\,\ channel-mode\=\(string\)joint-stereo\;";
0:00:01.210544259 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:775:gst_dvbaudiosink_event:<dvbaudiosink0>[00m EVENT tag
0:00:01.211768333 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbaudiosink0>[00m received event 0x769052f8 tag event: 0x769052f8, time 99:99:99.999999999, seq-num 127, GstTagList-global, taglist=(taglist)"taglist\,\ encoder\=\(string\)\"Nandub\\\ v1.0rc2\"\,\ container-format\=\(string\)AVI\;";
0:00:01.212440777 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:775:gst_dvbaudiosink_event:<dvbaudiosink0>[00m EVENT tag
0:00:01.213514740 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3334:gst_base_sink_chain_unlocked:<dvbaudiosink0>[00m got times start: 0:00:00.000000000, end: 0:00:00.024000000
0:00:01.214108481 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1902:gst_base_sink_get_sync_times:<dvbaudiosink0>[00m got times start: 0:00:00.000000000, stop: 0:00:00.024000000, do_sync 1
0:00:01.214599851 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:2201:gst_base_sink_do_preroll:<dvbaudiosink0>[00m prerolling object 0x769176a0
0:00:01.215235444 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:936:gst_base_sink_set_last_buffer_unlocked:<dvbaudiosink0>[00m setting last buffer to 0x769176a0
0:00:01.215556629 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:2220:gst_base_sink_do_preroll:<dvbaudiosink0>[00m preroll buffer 0:00:00.000000000
0:00:01.215902999 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1455:gst_base_sink_commit_state:<dvbaudiosink0>[00m commiting state to PAUSED
0:00:01.216229407 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1480:gst_base_sink_commit_state:<dvbaudiosink0>[00m posting PAUSED state change message
0:00:01.217093407 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1486:gst_base_sink_commit_state:<dvbaudiosink0>[00m posting async-done message
0:00:01.218367740 [335m 2044[00m 0x75422400 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:2154:gst_base_sink_wait_preroll:<dvbaudiosink0>[00m waiting in preroll for flush or PLAYING
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...


and mkv with dts , dts downmix not work


gst-launch-1.0 --gst-debug basesink:6,dvbaudiosink:5 playbin uri=file:///media/hdd/mkv/Battle_in_Seattle.mkv
Setting pipeline to PAUSED ...
Pipeline is PREROLLING ...
0:00:00.472476111 [335m 2482[00m 0x76a35430 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:827:gst_base_sink_set_async_enabled:<GstDVBVideoSink@0x7551b638>[00m set async enabled to 1
0:00:00.474683037 [335m 2482[00m 0x76a35430 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/x-h264, level=(string)4.1, profile=(string)high, codec_data=(buffer)01640029ffe1002a67640029ac2ca501e0089f970152020202800001f400005dc074500010b0600039385f8c7076860c458001000568e9083525, stream-format=(string)avc, alignment=(string)au, width=(int)1920, height=(int)1080, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)24/1 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:00.479234333 [335m 2482[00m 0x76a35430 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/x-dts, channels=(int)6, rate=(int)48000 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.496733630 [335m 2482[00m 0x76a35430 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/x-dts, channels=(int)6, rate=(int)48000 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.764017778 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.766684000 [335m 2482[00m 0x75513950 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.775550481 [335m 2482[00m 0x75513660 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:827:gst_base_sink_set_async_enabled:<GstDVBAudioSink@0x7555d460>[00m set async enabled to 1
0:00:00.777182000 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1523:gst_dvbaudiosink_change_state:<dvbaudiosink0>[00m GST_STATE_CHANGE_NULL_TO_READY
0:00:00.777545481 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1421:gst_dvbaudiosink_start:<dvbaudiosink0>[00m start
0:00:00.780407333 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink0>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 0
0:00:00.782706704 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1452:gst_dvbaudiosink_stop:<dvbaudiosink0>[00m stop
0:00:00.787266704 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1559:gst_dvbaudiosink_change_state:<dvbaudiosink0>[00m GST_STATE_CHANGE_READY_TO_NULL
0:00:00.790045296 [335m 2482[00m 0x75513950 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:827:gst_base_sink_set_async_enabled:<GstDVBAudioSink@0x75f05bf0>[00m set async enabled to 1
0:00:00.790736555 [335m 2482[00m 0x75513950 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1523:gst_dvbaudiosink_change_state:<dvbaudiosink1>[00m GST_STATE_CHANGE_NULL_TO_READY
0:00:00.790978481 [335m 2482[00m 0x75513950 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1421:gst_dvbaudiosink_start:<dvbaudiosink1>[00m start
0:00:00.793103185 [335m 2482[00m 0x75513950 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink1>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 0
0:00:00.794307407 [335m 2482[00m 0x75513950 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1452:gst_dvbaudiosink_stop:<dvbaudiosink1>[00m stop
0:00:00.797900518 [335m 2482[00m 0x75513950 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1559:gst_dvbaudiosink_change_state:<dvbaudiosink1>[00m GST_STATE_CHANGE_READY_TO_NULL
0:00:00.918453296 [335m 2482[00m 0x75513660 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:827:gst_base_sink_set_async_enabled:<GstDVBAudioSink@0x755e05f8>[00m set async enabled to 1
0:00:00.919098296 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1523:gst_dvbaudiosink_change_state:<dvbaudiosink2>[00m GST_STATE_CHANGE_NULL_TO_READY
0:00:00.919313592 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1421:gst_dvbaudiosink_start:<dvbaudiosink2>[00m start
0:00:00.972065074 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink2>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 0
0:00:00.974654555 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.983641185 [335m 2482[00m 0x75513950 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink2>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 0
0:00:00.986175889 [335m 2482[00m 0x75513950 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 0
0:00:00.989603926 [335m 2482[00m 0x75513660 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink2>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 0
0:00:01.005210407 [335m 2482[00m 0x75513950 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbaudiosink2>[00m Checking if requested caps audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012 are a subset of pad caps audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], parsed=(boolean)true; audio/mpeg, mpegversion=(int){ 2, 4 }, profile=(string)lc, stream-format=(string){ raw, adts, adif, loas }, framed=(boolean)true; audio/x-ac3, framed=(boolean)true; audio/x-private1-ac3, framed=(boolean)true; audio/x-eac3, framed=(boolean)true; audio/x-private1-eac3, framed=(boolean)true; audio/x-private1-lpcm, framed=(boolean)true; audio/AMR, rate=(int){ 8000, 16000 }, channels=(int)1; audio/x-raw, format=(string){ S32LE, S24LE, S16LE, S8, U32LE, U24LE, U16LE, U8 }, layout=(string){ interleaved, non-interleaved }, rate=(int)[ 1, 2147483647 ], channels=(int)[ 1, 2 ] result 0
Missing element: DTS decoder
WARNING: from element /GstPlayBin:playbin0/GstURIDecodeBin:uridecodebin0: No decoder available for type 'audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012'.
Additional debug info:
/home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0-plugins-base/1.4.5-r0/gst-plugins-base-1.4.5/gst/playback/gsturidecodebin.c(939): unknown_type_cb (): /GstPlayBin:playbin0/GstURIDecodeBin:uridecodebin0
Stream with high frequencies VQ coding
Missing element: DTS decoder
WARNING: from element /GstPlayBin:playbin0/GstURIDecodeBin:uridecodebin0: No decoder available for type 'audio/x-dts, framed=(boolean)true, rate=(int)48000, channels=(int)6, endianness=(int)4321, depth=(int)16, block-size=(int)512, frame-size=(int)2012'.
Additional debug info:
/home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0-plugins-base/1.4.5-r0/gst-plugins-base-1.4.5/gst/playback/gsturidecodebin.c(939): unknown_type_cb (): /GstPlayBin:playbin0/GstURIDecodeBin:uridecodebin0
0:00:01.257639148 [335m 2482[00m 0x755134c0 [33;01mLOG    [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:827:gst_base_sink_set_async_enabled:<dvbvideosink0>[00m set async enabled to 1
Stream with high frequencies VQ coding
0:00:01.308986555 [335m 2482[00m 0x755134c0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4908:gst_base_sink_change_state:<dvbvideosink0>[00m READY to PAUSED
0:00:01.309752777 [335m 2482[00m 0x755134c0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4929:gst_base_sink_change_state:<dvbvideosink0>[00m doing async state change
0:00:01.310283592 [335m 2482[00m 0x755134c0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4074:gst_base_sink_pad_activate:<dvbvideosink0>[00m Trying pull mode first
0:00:01.310489296 [335m 2482[00m 0x755134c0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4080:gst_base_sink_pad_activate:<dvbvideosink0>[00m pull mode disabled
0:00:01.310624333 [335m 2482[00m 0x755134c0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4130:gst_base_sink_pad_activate:<dvbvideosink0>[00m Falling back to push mode
0:00:01.310936185 [335m 2482[00m 0x755134c0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4132:gst_base_sink_pad_activate:<dvbvideosink0>[00m Success activating push mode
0:00:01.322884555 [335m 2482[00m 0x755134c0 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1452:gst_dvbaudiosink_stop:<dvbaudiosink2>[00m stop
0:00:01.330432000 [335m 2482[00m 0x755134c0 [37mDEBUG  [00m [00m        dvbaudiosink /home/oe1/nightly43/build-enviroment/builds/openatv/vuzero/tmp/work/vuzero-oe-linux/gstreamer1.0-plugin-dvbmediasink/1.0+gitAUTOINC+50b7e19bfb-r2/git/gstdvbaudiosink.c:1559:gst_dvbaudiosink_change_state:<dvbaudiosink2>[00m GST_STATE_CHANGE_READY_TO_NULL
0:00:01.333386592 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x76a05048 stream-start event: 0x76a05048, time 99:99:99.999999999, seq-num 43, GstEventStreamStart, stream-id=(string)2b694d7d6afa977695f564aaa9bb1e3e55a2703ffcf9a0e6dfb99f49b7c74d68/397933744, flags=(GstStreamFlags)GST_STREAM_FLAG_SELECT, group-id=(uint)1;
0:00:01.334177925 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3057:gst_base_sink_default_event:<dvbvideosink0>[00m Now posting STREAM_START (seqnum:43)
0:00:01.346574925 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/x-h264, level=(string)4.1, profile=(string)high, codec_data=(buffer)01640029ffe1002a67640029ac2ca501e0089f970152020202800001f400005dc074500010b0600039385f8c7076860c458001000568e9083525, stream-format=(string)avc, alignment=(string)au, width=(int)1920, height=(int)1080, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)24/1 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:01.349024555 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/x-h264, level=(string)4.1, profile=(string)high, codec_data=(buffer)01640029ffe1002a67640029ac2ca501e0089f970152020202800001f400005dc074500010b0600039385f8c7076860c458001000568e9083525, stream-format=(string)avc, alignment=(string)au, width=(int)1920, height=(int)1080, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)24/1 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:01.358324444 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/x-h264, level=(string)4.1, profile=(string)high, codec_data=(buffer)01640029ffe1002a67640029ac2ca501e0089f970152020202800001f400005dc074500010b0600039385f8c7076860c458001000568e9083525, stream-format=(string)avc, alignment=(string)au, width=(int)1920, height=(int)1080, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)24/1 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:01.360198777 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:4840:gst_base_sink_default_query:<dvbvideosink0>[00m Checking if requested caps video/x-h264, level=(string)4.1, profile=(string)high, codec_data=(buffer)01640029ffe1002a67640029ac2ca501e0089f970152020202800001f400005dc074500010b0600039385f8c7076860c458001000568e9083525, stream-format=(string)avc, alignment=(string)au, width=(int)1920, height=(int)1080, pixel-aspect-ratio=(fraction)1/1, framerate=(fraction)24/1 are a subset of pad caps video/mpeg, mpegversion=(int)4, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/mpeg, mpegversion=(int){ 1, 2 }, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h264, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-h263, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-msmpeg, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], msmpegversion=(int)43; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)3; video/x-divx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], divxversion=(int)[ 4, 6 ]; video/x-xvid, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-3ivx, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ]; video/x-wmv, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ], wmvversion=(int)3; video/mpegts, systemstream=(boolean)true, width=(int)[ 16, 4096 ], height=(int)[ 16, 4096 ] result 1
0:00:01.369237629 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x4a59f8 caps event: 0x4a59f8, time 99:99:99.999999999, seq-num 346, GstEventCaps, caps=(GstCaps)"video/x-h264\,\ level\=\(string\)4.1\,\ profile\=\(string\)high\,\ codec_data\=\(buffer\)01640029ffe1002a67640029ac2ca501e0089f970152020202800001f400005dc074500010b0600039385f8c7076860c458001000568e9083525\,\ stream-format\=\(string\)avc\,\ alignment\=\(string\)au\,\ width\=\(int\)1920\,\ height\=\(int\)1080\,\ pixel-aspect-ratio\=\(fraction\)1/1\,\ framerate\=\(fraction\)24/1";
0:00:01.392761370 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x4a5968 segment event: 0x4a5968, time 99:99:99.999999999, seq-num 123, GstEventSegment, segment=(GstSegment)"GstSegment, flags=(GstSegmentFlags)GST_SEGMENT_FLAG_NONE, rate=(double)1, applied-rate=(double)1, format=(GstFormat)GST_FORMAT_TIME, base=(guint64)0, offset=(guint64)0, start=(guint64)0, stop=(guint64)18446744073709551615, time=(guint64)0, position=(guint64)0, duration=(guint64)5947042000000;";
0:00:01.403184777 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x76a05288 tag event: 0x76a05288, time 99:99:99.999999999, seq-num 124, GstTagList-stream, taglist=(taglist)"taglist\,\ video-codec\=\(string\)H264\,\ language-code\=\(string\)und\;";
0:00:01.409080814 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3162:gst_base_sink_event:<dvbvideosink0>[00m received event 0x76a051b0 tag event: 0x76a051b0, time 99:99:99.999999999, seq-num 127, GstTagList-global, taglist=(taglist)"taglist\,\ container-format\=\(string\)Matroska\;";
0:00:01.413575259 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:3334:gst_base_sink_chain_unlocked:<dvbvideosink0>[00m got times start: 0:00:00.000000000, end: 0:00:00.041666666
0:00:01.414089185 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1902:gst_base_sink_get_sync_times:<dvbvideosink0>[00m got times start: 0:00:00.000000000, stop: 0:00:00.041666666, do_sync 1
0:00:01.414414407 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:2201:gst_base_sink_do_preroll:<dvbvideosink0>[00m prerolling object 0x75512160
0:00:01.415023481 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:936:gst_base_sink_set_last_buffer_unlocked:<dvbvideosink0>[00m setting last buffer to 0x75512160
0:00:01.415295888 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:2220:gst_base_sink_do_preroll:<dvbvideosink0>[00m preroll buffer 0:00:00.000000000
0:00:01.415490185 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1455:gst_base_sink_commit_state:<dvbvideosink0>[00m commiting state to PAUSED
0:00:01.415615407 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1480:gst_base_sink_commit_state:<dvbvideosink0>[00m posting PAUSED state change message
0:00:01.416044111 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:1486:gst_base_sink_commit_state:<dvbvideosink0>[00m posting async-done message
0:00:01.420752629 [335m 2482[00m   0x5046f0 [37mDEBUG  [00m [00m            basesink /home/oe1/nightly43/build-enviroment/builds/openatv/hd2400/tmp/work/mips32el-oe-linux/gstreamer1.0/1.4.5-r2/gstreamer-1.4.5/libs/gst/base/gstbasesink.c:2154:gst_base_sink_wait_preroll:<dvbvideosink0>[00m waiting in preroll for flush or PLAYING
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...
 

 


Edited by babsy98, 15 March 2015 - 12:35.


Re: GStreamer 1.0 #694 babsy98

  • Senior Member
  • 166 posts

+18
Neutral

Posted 15 March 2015 - 12:50

hm cant edit my last post here more infos

 

mkv with ac3 works

 

flac, mp3 and m4a works

 

and my high resulution m4a works with gst 0.10 i have no audio :)


Edited by babsy98, 15 March 2015 - 12:52.


Re: GStreamer 1.0 #695 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 15 March 2015 - 12:50

@babsy98

 

Can You set somewhere I link so that I can download the problematic avi file. Would be nice there have been more reports about divx3 on vuplus. And just like it was with wmv formats think it's just a pes header sequence problem. Those header tends to be different in function off boxes. Which is not abnormal since there are different chipset's which means different closed source drivers.

 

The base gst-1.0 dvbmediasink is and adapted gst-0.1 mediasink from pli. And the pli mediasink was 100 % perfect for et boxes. Not for the rest.



Re: GStreamer 1.0 #696 babsy98

  • Senior Member
  • 166 posts

+18
Neutral

Posted 15 March 2015 - 12:56

i have test my wmv files with vu and works here i have video and audio

 

i must look to spltt the avi and upload the file for test



Re: GStreamer 1.0 #697 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 15 March 2015 - 13:13

At Moderators,

 

Would be nice if:

- latest changes in openpli-oe-core master is merged into openpli-oe-core gst-1 branch.

- the patch 0001-0002-eos-vuplus-dreambox-2.patch is applied to branch gst-1.0

  it does not change anything for the boxes et and xp boxes (except the eos from mx3L) but does let the vuplus and dm8000 work if asked at config time.



Re: GStreamer 1.0 #698 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 15 March 2015 - 13:16

i have test my wmv files with vu and works here i have video and audio

 

i must look to spltt the avi and upload the file for test

 

Yes the wmv files now works on vuplus. It's just the (mkv)avi which do not yet. That's the only file I need. avi. with divx3



Re: GStreamer 1.0 #699 Erik Slagter

  • PLi® Core member
  • 46,969 posts

+541
Excellent

Posted 15 March 2015 - 13:21

Updated the gst-1 branch. BTW I'm not a moderator.


* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.


Re: GStreamer 1.0 #700 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 15 March 2015 - 13:39

Updated the gst-1 branch. BTW I'm not a moderator.

 

Thanks , saw its done.

 

I see You're a core member.

 

Can You also apply the dvbmediasink gst-1.0 branch patch ?

 

Now We have a nice base for vuplus and dreambox. Changes are not big and do not affect any other then dm or vuplus boxes.

 

the gst dvbmedisink  is http://sourceforge.n...i/gst-1.0/tree/


Edited by christophecvr, 15 March 2015 - 13:44.




42 user(s) are reading this topic

0 members, 42 guests, 0 anonymous users