mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
gst/gst.defs: add gst.ghost_pad_new_notarget
Original commit message from CVS: * gst/gst.defs: add gst.ghost_pad_new_notarget * gst/gstpad.override: change wrap_gst_pad_new a little and add logging * testsuite/test_pad.py: add tests for constructors of gst.Pad
This commit is contained in:
parent
9e2af8b0b4
commit
4babdda09c
5 changed files with 395 additions and 352 deletions
|
@ -1,3 +1,12 @@
|
|||
2005-09-08 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/gst.defs:
|
||||
add gst.ghost_pad_new_notarget
|
||||
* gst/gstpad.override:
|
||||
change wrap_gst_pad_new a little and add logging
|
||||
* testsuite/test_pad.py:
|
||||
add tests for constructors of gst.Pad
|
||||
|
||||
2005-09-05 Andy Wingo <wingo@pobox.com>
|
||||
|
||||
* examples/pipeline-tester: Update pipelines. The fixed-rate v4l
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 54886902497be267fe1f1a3f9c4dc0245bc46175
|
||||
Subproject commit 00cc4f5af95a15be55b8c1b3eed09f4738412f91
|
|
@ -1780,7 +1780,7 @@
|
|||
)
|
||||
)
|
||||
|
||||
(define-function gst_ghost_pad_new_notarget
|
||||
(define-function ghost_pad_new_notarget
|
||||
(c-name "gst_ghost_pad_new_notarget")
|
||||
(return-type "GstPad*")
|
||||
(parameters
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -22,7 +22,26 @@
|
|||
|
||||
from common import gst, unittest
|
||||
|
||||
class PadTemplateTest(unittest.TestCase):
|
||||
def testConstructor(self):
|
||||
self.failUnless(gst.PadTemplate("template", gst.PAD_SINK,
|
||||
gst.PAD_ALWAYS, gst.caps_from_string("audio/x-raw-int")))
|
||||
|
||||
class PadTest(unittest.TestCase):
|
||||
def testConstructor(self):
|
||||
# first style uses gst_pad_new
|
||||
gst.debug('creating pad with name src')
|
||||
self.failUnless(gst.Pad("src", gst.PAD_SRC))
|
||||
gst.debug('creating pad with no name')
|
||||
self.failUnless(gst.Pad(None, gst.PAD_SRC))
|
||||
self.failUnless(gst.Pad(name=None, direction=gst.PAD_SRC))
|
||||
self.failUnless(gst.Pad(direction=gst.PAD_SRC, name=None))
|
||||
self.failUnless(gst.Pad(direction=gst.PAD_SRC, name="src"))
|
||||
|
||||
# second uses gst_pad_new_from_template
|
||||
#template = gst.PadTemplate()
|
||||
|
||||
class PadPipelineTest(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.pipeline = gst.parse_launch('fakesrc name=source ! fakesink')
|
||||
src = self.pipeline.get_by_name('source')
|
||||
|
|
Loading…
Reference in a new issue