Jump to content


Photo

OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05


  • Please log in to reply
172 replies to this topic

Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #61 littlesat

  • PLi® Core member
  • 57,119 posts

+698
Excellent

Posted 11 January 2016 - 10:49

How about display only when 0, 50, 100? -> It can skip those percentage... so that does not help... In addition this a tricky work-a-round... solve the symptom and do not solve the real issue...

 

What if we copy the percentage into an integer and then put it in the debug?


Edited by littlesat, 11 January 2016 - 10:51.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #62 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 11 January 2016 - 11:05

I did not wen't that far but only with 0 will cause already an issue.

 

Main problem is well only the eDebug rule self. It's really not needed into logs. It's actually just making the logs unusable. Since it fill ops the console so far that we Can't trace back but are forced to output to a log file if we want to keep anything useful.



Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #63 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 11 January 2016 - 11:15

Just commenting the eDebug is enough, it even does not make sense to have a log off each bufferings msg but just makes the logs unreadable.



Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #64 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 11 January 2016 - 11:33

But creating a static-buffer percentage var and then copy the percentage into it do not now if it will be more light weight.

 

For example declaring into header:

 

gint m_buffer_current_percent;

 

and then use by the function.

		case GST_MESSAGE_BUFFERING:
			if (m_sourceinfo.is_streaming)
			{
				GstBufferingMode mode;
				gst_message_parse_buffering(msg, &(m_bufferInfo.bufferPercent));
				m_buffer_current_percent = m_bufferInfo.bufferPercent;

And replace by rest off module everywhere we use m_bufferInfo.bufferPercent  by m_buffer_current_percent ?



Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #65 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 11 January 2016 - 12:27

Also A new bug gst-1 bug has been introduced since commit :

http://cgit.freedesk...5d829047b2d9f68

 

This up to and including the last commit :

 

http://cgit.freedesk...c9cd003aafe805e

 

I set a comment on:

 

https://bugzilla.gno...g.cgi?id=760234

 

But perhaps file a new bug since I(ts new due to that commit. It does not reopens anyway.



Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #66 Akki

  • Senior Member
  • 204 posts

+3
Neutral

Posted 11 January 2016 - 13:16

I want my findings also contribute to this problem, perhaps you can identify what it.

I have 3 days ago about Taapat GIT me Image
built for the Duo2 with GST 1.71 and I was amazed that I had no spinner in the known streams.

However, if I send the Duo2 to standby and anschalte again I have no sound output.

https://github.com/T...ine/vuduo2.conf

In the vuduo2.conf section:

MACHINE_FEATURES + = "DVB-C blindscan DVBC blindscan dvbs HbbTV wol ctrlrc transcoding dvbproxy uianimation"

The entry "dvbproxy" caused me at the Duo2 I had no spinner in the streams,
However, as already written, by turning on from standby without sound output.

For testing purposes, I then built the image without the entry "dvbproxy", then I had indeed again a sound output when I turned on the Duo2 from standby, but came the spinners
again at said streams.

I hope the professionals can order what to do and it helps in problem solving.

Greeting Akki

Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #67 Taapat

  • PLi® Core member
  • 2,345 posts

+121
Excellent

Posted 11 January 2016 - 13:43

@Akki it has nothing to do with dvbproxy.
christophecvr found the reason of the problem.
As I wrote here, I'm in enigma disable this message in the log, and so you do not have a problem in this streams.

If you build without dvbproxy, is used standart openpli enigma with this message in log.


Edited by Taapat, 11 January 2016 - 13:46.


Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #68 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 11 January 2016 - 14:10

@Akki as long is not decided what will be done about this bug in e2 just apply the patch when You build to enigma2 I posted on :

 

http://forums.openpl...ndpost&p=523917



Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #69 theparasol

  • Senior Member
  • 4,157 posts

+198
Excellent

Posted 11 January 2016 - 14:18

Main problem is well only the eDebug rule self. It's really not needed into logs. It's actually just making the logs unusable. Since it fill ops the console so far that we Can't trace back but are forced to output to a log file if we want to keep anything useful.

 

Did you guys notice that edebug() uses locking? If the messages come in rather quickly they will pile up.

But perhaps I'm mistaken, I'm just a bad hobby coder ;)


@Camping: ZGemma H.2S, Technisat Multytenne 4-in-1 @Home: Edision Mini 4K, Wave Frontier T55, EMP Centauri EMP DiSEqC 8/1 switch, 4x Inverto Ultra Black single LNB


Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #70 Akki

  • Senior Member
  • 204 posts

+3
Neutral

Posted 11 January 2016 - 14:21

@Taapat And Chris

You guys are the professionals, I just wanted to write my findings which did :-)

I'm going to apply the patch Chris and hope that all the works.

Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #71 MastaG

  • Senior Member
  • 1,531 posts

+118
Excellent

Posted 11 January 2016 - 14:40

Looks I have some catching up to do :)

Thank you Taapat and Chris for all the contribution lately.



Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #72 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 11 January 2016 - 15:15

 

Main problem is well only the eDebug rule self. It's really not needed into logs. It's actually just making the logs unusable. Since it fill ops the console so far that we Can't trace back but are forced to output to a log file if we want to keep anything useful.

 

Did you guys notice that edebug() uses locking? If the messages come in rather quickly they will pile up.

But perhaps I'm mistaken, I'm just a bad hobby coder ;)

 

Well I'm also just a hobby coder . But bad or good that's all relative . I personally find You pretty good as coder .

 

Everyone is learning each day ;)

 

but perhaps should be asked why eDebug uses locking ? Could be required to keep some msg's into sequence I gues, but it's clear that in other situations it will block the whole process.

The sometimes weird and or runtime errors could be caused by the eDebug locking.


Edited by christophecvr, 11 January 2016 - 15:17.


Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #73 Akki

  • Senior Member
  • 204 posts

+3
Neutral

Posted 11 January 2016 - 18:03

Image ready built, great work from you @ Chris Spinner no zapping of the
Streams..genial ... Thank you

Greeting Akki

Edited by Akki, 11 January 2016 - 18:03.


Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #74 buc61b

  • Senior Member
  • 154 posts

+1
Neutral

Posted 11 January 2016 - 18:52

Did the new relase fix low simbol rate on spark 7111

Can someone confirm this?

Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #75 MastaG

  • Senior Member
  • 1,531 posts

+118
Excellent

Posted 11 January 2016 - 23:30

Chris,

 

Is this patch still required?

From 6702d913ade96f8b462eabb971b75745fbc88e63 Mon Sep 17 00:00:00 2001
From: christophecvr <stefansat@telenet.be>
Date: Thu, 24 Dec 2015 11:47:47 +0100
Subject: [PATCH] Freeze when changing audiotrack if media is paused.

 When user paused the media then tried to select a higher number
 off audio track the stb freezed. Just replaced the already inserted
 launch off gstreamer to play during seekToImpl procedure.
 Now user can pause media select another track up or down.
 No freeze anymore and no loss off audio/video fragments.

    modified:   lib/service/servicemp3.cpp
---
 lib/service/servicemp3.cpp | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/lib/service/servicemp3.cpp b/lib/service/servicemp3.cpp
index 5af48e8..cae3cd2 100644
--- a/lib/service/servicemp3.cpp
+++ b/lib/service/servicemp3.cpp
@@ -895,6 +895,12 @@ RESULT eServiceMP3::getLength(pts_t &pts)
 
 RESULT eServiceMP3::seekToImpl(pts_t to)
 {
+    if (m_paused)
+    {
+        m_seek_paused = true;
+        m_paused = false;
+        gst_element_set_state(m_gst_playbin, GST_STATE_PLAYING);
+    }
         /* convert pts to nanoseconds */
 #if GST_VERSION_MAJOR < 1
     gint64 time_nanoseconds = to * 11111LL;
@@ -912,12 +918,6 @@ RESULT eServiceMP3::seekToImpl(pts_t to)
         return -1;
     }
 
-    if (m_paused)
-    {
-        m_seek_paused = true;
-        gst_element_set_state(m_gst_playbin, GST_STATE_PLAYING);
-    }
-
     return 0;
 }
 
@@ -1755,6 +1755,7 @@ void eServiceMP3::gstBusCall(GstMessage *msg)
                     if (m_seek_paused)
                     {
                         m_seek_paused = false;
+                        m_paused = true;
                         gst_element_set_state(m_gst_playbin, GST_STATE_PAUSED);
                     }
                     else
--
1.9.1


Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #76 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 11 January 2016 - 23:44

If You want to avoid a stb full freeze when changing (not only reselecting) the audio track if media is paused (only possible by filesrc media streamsrc media can't be paused). Yes then You must still apply the patch.

It's not in e2 .

 

But it's not the best solution.

 

mx3L tries to find the why it causes a full freeze only if a higher then the current audiotrack is done during.

 

However the patch is anyway not so good.

 

The only save we could do at this time = removing the

    if (m_paused)
    {
        m_seek_paused = true;
        gst_element_set_state(m_gst_playbin, GST_STATE_PLAYING);
    }

and also by going to state playing the

                     if (m_seek_paused)
                     {
                         m_seek_paused = false;
                         m_paused = true;
                         gst_element_set_state(m_gst_playbin, GST_STATE_PAUSED);
                     }
                     else

Since they do not make sence att all.

 

And perhaps just allow audioreselection off same track during pause fase. Doeing this action cause a nice resync off all. When You then unpause all runs 100 % fin and in sync.

The track change during paused fase should be prohibited.


Edited by christophecvr, 11 January 2016 - 23:45.


Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #77 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 11 January 2016 - 23:54

@MastaG

 

The patch which really should be done is this one that I set on :

 

http://forums.openpl...ndpost&p=523917

 

That debugging is actually a blocker for some media on all vu+ series and .....



Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #78 MastaG

  • Senior Member
  • 1,531 posts

+118
Excellent

Posted 11 January 2016 - 23:57

Thank you Chris,

 

I've both of them checked in atm.

Or will the second one  http://forums.openpl...ndpost&p=523917 fix the problem as well?



Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #79 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 11 January 2016 - 23:58

Also do not go higher in version for gst-plugins-base then :

 

http://cgit.freedesk...a7e2c81706dd2d8

 

Every higher commit does break a lot off media.

 

bug report filed see

 

https://bugzilla.gno...g.cgi?id=760477



Re: OpenPLi-4 / Gstreamer 1.7.1 (master git) images 2016-01-05 #80 christophecvr

  • Senior Member
  • 3,131 posts

+140
Excellent

Posted 12 January 2016 - 00:01

Thank you Chris,

 

I've both of them checked in atm.

Or will the second one  http://forums.openpl...ndpost&p=523917 fix the problem as well?

No the possible full freeze is not solved whit the eDebug patch (has nothing to do with each other).


Edited by christophecvr, 12 January 2016 - 00:02.



3 user(s) are reading this topic

0 members, 3 guests, 0 anonymous users