I can not get the "no-more-pads" signal

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

I can not get the "no-more-pads" signal

Martin.cheng
Hi everyone:
I am trying to run the TS format file on my program.
As the subject, I can not get "no-more-pads" signal after audio decoder and video decoder linking demux successful
Can someone give me some hint about it ?
Thank you
Reply | Threaded
Open this post in threaded view
|

Re: I can not get the "no-more-pads" signal

Hyunwoo Park-2

Maybe there is no specific header in TS file that contains the information of how many PIDs(pads on gstreamer) in that file. I guess that thats why there is no "no-more-pads" signal.

2012. 1. 6. 오후 6:30에 "Martin.cheng" <[hidden email]>님이 작성:
Hi everyone:
I am trying to run the TS format file on my program.
As the subject, I can not get "no-more-pads" signal after audio decoder and
video decoder linking demux successful
Can someone give me some hint about it ?
Thank you

--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/I-can-not-get-the-no-more-pads-signal-tp4268758p4268758.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.
_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: I can not get the "no-more-pads" signal

mafaneh
I would suggest downloading this application:

It is a free program and you can use it to find out if your TS file has PAT and PMT tables and what elementary streams are in it. A pad would get created for an elementary stream that exists in that file. Of course there are other software packages out there to do the same but I've found this one to be one of the simplest.

Hope this helps.
- Mohammad

On Fri, Jan 6, 2012 at 5:20 AM, Hyunwoo Park <[hidden email]> wrote:

Maybe there is no specific header in TS file that contains the information of how many PIDs(pads on gstreamer) in that file. I guess that thats why there is no "no-more-pads" signal.

2012. 1. 6. 오후 6:30에 "Martin.cheng" <[hidden email]>님이 작성:

Hi everyone:
I am trying to run the TS format file on my program.
As the subject, I can not get "no-more-pads" signal after audio decoder and
video decoder linking demux successful
Can someone give me some hint about it ?
Thank you

--
View this message in context: http://gstreamer-devel.966125.n4.nabble.com/I-can-not-get-the-no-more-pads-signal-tp4268758p4268758.html
Sent from the GStreamer-devel mailing list archive at Nabble.com.
_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel



_______________________________________________
gstreamer-devel mailing list
[hidden email]
http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: I can not get the "no-more-pads" signal

Martin.cheng
In reply to this post by Hyunwoo Park-2
Hyunwoo Park-2 wrote
Maybe there is no specific header in TS file that contains the information
of how many PIDs(pads on gstreamer) in that file. I guess that thats why
there is no "no-more-pads" signal.
Here we go, I have confirmed that the there is no signal "no more pads" in TS file.
Thanks for Hyunwoo Park-2. It 's really helpful for me.
By the way, are there any methods provided by GST to solve this problem.
How