gstreamer-devel Digest, Vol 30, Issue 88

mabio at linkpower.com.br mabio at linkpower.com.br
Tue Jul 23 08:45:28 PDT 2013


  

Este está OK. Hoje a tarde vou sentar com os caras. Me ligaram a
pouco. 

Abs, 

Mabio Coelho 

On Tue, 23 Jul 2013 08:33:47 -0700,
gstreamer-devel-request at lists.freedesktop.org wrote: 

> Send
gstreamer-devel mailing list submissions to
>
gstreamer-devel at lists.freedesktop.org [16]
> 
> To subscribe or
unsubscribe via the World Wide Web, visit
>
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel [17]
> or,
via email, send a message with subject or body 'help' to
>
gstreamer-devel-request at lists.freedesktop.org [18]
> 
> You can reach
the person managing the list at
>
gstreamer-devel-owner at lists.freedesktop.org [19]
> 
> When replying,
please edit your Subject line so it is more specific
> than "Re:
Contents of gstreamer-devel digest..."
> 
> Today's Topics:
> 
> 1. Re:
Internal Data Flow Error on udpsrc (Tim-Philipp M?ller)
> 2. Re:
Internal Data Flow Error on udpsrc (George Demetriades)
> 3. Re:
Internal Data Flow Error on udpsrc (Tim-Philipp M?ller)
> 4. Re:
Internal Data Flow Error on udpsrc (Baby Octopus)
> 5. Re: Internal Data
Flow Error on udpsrc (George Demetriades)
> 6. Re: Help on some issues /
Porting Flumotion (Max Sarajlija)
> 
>
----------------------------------------------------------------------
>

> Message: 1
> Date: Tue, 23 Jul 2013 15:57:35 +0100
> From:
Tim-Philipp M?ller 
> To: gstreamer-devel at lists.freedesktop.org [21]
>
Subject: Re: Internal Data Flow Error on udpsrc
>
Message-ID:Content-Type: text/plain; charset="UTF-8"
> 
> On Tue,
2013-07-23 at 15:50 +0100, George Demetriades wrote:
> 
> Hi George,
>

>> following two lines get repeated a very large amount of times:
0:07:25.299723375 7901 0x2f8c290 LOG GST_SCHEDULING
gstpad.c:4720:gst_pad_push:called chainfunction &gst_queue_chain with
buffer 0x7fd1c40c1ab0, returned error 0:07:25.299924914 7901 0x2f8c290
LOG queue_dataflow gstqueue.c:1061:gst_queue_chain:exit because task
paused, reason: error
> 
> It looks like the error is coming from the
video parser or decoder
> branch then.
> 
> What is your full
pipeline?
> 
> Cheers
> -Tim
> 
> ------------------------------
> 
>
Message: 2
> Date: Tue, 23 Jul 2013 16:16:53 +0100
> From: George
Demetriades 
> To: Discussion of the development of and with GStreamer
>

> Subject: Re: Internal Data Flow Error on udpsrc
> Message-ID:
> 
>
Content-Type: text/plain; charset="iso-8859-1"
> 
> Hi Tim,
> 
> My
pipeline is as follows:
> 
> udpsrc -> flutsdemux
> 
> the Fluendo TS
demuxer then splits to two sepearate queues, one for video,
> one for
audio:
> 
> video:
> queue -> fluh264dec -> videorate -> filter ->
appsink
> 
> audio:
> queue -> fluaacdec -> appsink
> 
> George
> 
> On
23 July 2013 15:57, Tim-Philipp M?ller wrote:
> 
>> On Tue, 2013-07-23
at 15:50 +0100, George Demetriades wrote: Hi George, 
>> 
>>> following
two lines get repeated a very large amount of times: 0:07:25.299723375
7901 0x2f8c290 LOG GST_SCHEDULING gstpad.c:4720:gst_pad_push:called
chainfunction &gst_queue_chain with buffer 0x7fd1c40c1ab0, returned
error 0:07:25.299924914 7901 0x2f8c290 LOG queue_dataflow
gstqueue.c:1061:gst_queue_chain:exit because task paused, reason:
error
>> It looks like the error is coming from the video parser or
decoder branch then. What is your full pipeline? Cheers -Tim
_______________________________________________ gstreamer-devel mailing
list gstreamer-devel at lists.freedesktop.org [1]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel [2]
> 
>
-------------- next part --------------
> An HTML attachment was
scrubbed...
> URL: 
> 
> ------------------------------
> 
> Message:
3
> Date: Tue, 23 Jul 2013 16:22:45 +0100
> From: Tim-Philipp M?ller 
>
To: gstreamer-devel at lists.freedesktop.org [28]
> Subject: Re: Internal
Data Flow Error on udpsrc
> Message-ID:Content-Type: text/plain;
charset="UTF-8"
> 
> On Tue, 2013-07-23 at 16:16 +0100, George
Demetriades wrote:
> 5
https://github.com/bananadine/flumotion/blob/master/flumotion/component/feedcomponent010.py#L491
[12] On Mon, Jul 22, 2013 at 1:30 PM, Max Sarajlija wrote: 
>> 
>>>
Never mind, didn't see that PadProbeInfo has get_event. On Mon, Jul 22,
2013 at 1:17 PM, Max Sarajlija wrote: 
>>> 
>>>> Hi Tim, If you want a
GstEvent, you can get it from the probeinfo (after 
>>>> 
>>>>> checking
that the type is actually an event).
>>>> How can i get a GstEvent from
probeinfo? Thanks, Max On Sun, Jul 21, 2013 at 8:44 PM, Tim-Philipp
M?ller wrote: 
>>>> 
>>>>> On Sun, 2013-07-21 at 16:25 +0200, Max
Sarajlija wrote: Hi Max, 
>>>>> 
>>>>>> I'm porting Flumotion for the
new GStreamer (in PyGi) and i stumbled upon some things i can't resolve
on my own. I've posted more about this here:
http://portingflumotion.blogspot.com/ [6]
>>>>> About
http://portingflumotion.blogspot.co.uk/2013/07/analyzing.html [7] :
First of all, calling a GstProbeInfo structure 'event' is a very bad
idea, and makes everything even more confusing than it already is. Call
it probeinfo instead. If you want a GstEvent, you can get it from the
probeinfo (after checking that the type is actually an event). Then pass
the *event* to event_is_flumotion_reset(), not the *probeinfo*. (python
0 : C 1 ;)) Cheers -Tim _______________________________________________
gstreamer-devel mailing list gstreamer-devel at lists.freedesktop.org [8]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel [9]
>> 
>>
-------------- next part -------------- An HTML attachment was
scrubbed... URL: ------------------------------
_______________________________________________ gstreamer-devel mailing
list gstreamer-devel at lists.freedesktop.org [15]
>
ktop.org/mailman/listinfo/gstreamer-devel">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
End of gstreamer-devel Digest, Vol 30, Issue 88
***********************************************

  

Links:
------
[1]
mailto:gstreamer-devel at lists.freedesktop.org
[2]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
[3]
mailto:gstreamer-devel at lists.freedesktop.org
[4]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
[5]
http://lists.freedesktop.org/archives/gstreamer-devel/attachments/20130723/0d50c75a/attachment-0001.html
[6]
http://portingflumotion.blogspot.com/
[7]
http://portingflumotion.blogspot.co.uk/2013/07/analyzing.html
[8]
mailto:gstreamer-devel at lists.freedesktop.org
[9]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
[10]
mailto:t.i.m at zen.co.uk
[11] mailto:maksimilijans at gmail.com
[12]
https://github.com/bananadine/flumotion/blob/master/flumotion/component/feedcomponent010.py#L491
[13]
mailto:maksimilijans at gmail.com
[14]
http://lists.freedesktop.org/archives/gstreamer-devel/attachments/20130723/93db1b1b/attachment.html
[15]
mailto:gstreamer-devel at lists.freedesktop.org
[16]
mailto:gstreamer-devel at lists.freedesktop.org
[17]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
[18]
mailto:gstreamer-devel-request at lists.freedesktop.org
[19]
mailto:gstreamer-devel-owner at lists.freedesktop.org
[20]
mailto:t.i.m at zen.co.uk
[21]
mailto:gstreamer-devel at lists.freedesktop.org
[22]
mailto:gdemetriades at friendmts.co.uk
[23]
mailto:gstreamer-devel at lists.freedesktop.org
[24]
mailto:CABobO9K96N9MCmunTNeaEBJqVOGc=zCOAznQFCchVxRRd70aig at mail.gmail.com
[25]
mailto:t.i.m at zen.co.uk
[26]
http://lists.freedesktop.org/archives/gstreamer-devel/attachments/20130723/f2ffb31c/attachment-0001.html
[27]
mailto:t.i.m at zen.co.uk
[28]
mailto:gstreamer-devel at lists.freedesktop.org
[29]
mailto:jagadishkamathk at gmail.com
[30]
mailto:gstreamer-devel at lists.freedesktop.org
[31]
mailto:1374593246134-4661216.post at n4.nabble.com
[32]
http://gstreamer-devel.966125.n4.nabble.com/Internal-Data-Flow-Error-on-udpsrc-tp4661173p4661216.html
[33]
mailto:gdemetriades at friendmts.co.uk
[34]
mailto:gstreamer-devel at lists.freedesktop.org
[35]
mailto:CABobO9Jd51DA9COOsmRxSFGTjm90ksTk6vfiRuiN4+fyWLEG0Q at mail.gmail.com
[36]
mailto:jagadishkamathk at gmail.com
[37]
mailto:gstreamer-devel at lists.freedesktop.org
[38]
mailto:CAHzqrArNeNgOe6X0G9Ght4xbUmT51ifYU3B+p4wmq4t=TQQ_NQ at mail.gmail.com
[39]
mailto:maksimilijans at gmail.com
[40]
https://github.com/bananadine/flumotion/blob/master/flumotion/component/feedcomponent010.py#L334
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/gstreamer-devel/attachments/20130723/4eb059da/attachment.html>


More information about the gstreamer-devel mailing list