mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
pyges: Install it so we now use import ges
Using from gst import ges did not make much sense
This commit is contained in:
parent
08be3bd93b
commit
1b036156af
13 changed files with 13 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
SUBDIRS = codegen examples testsuite
|
||||
pkgpyexecdir = $(pyexecdir)/gst-$(GST_MAJORMINOR)/gst
|
||||
pkgpyexecdir = $(pyexecdir)
|
||||
|
||||
# we install everything in pyexecdir; otherwise you end up with a mess for
|
||||
# multilib
|
||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class GlobalFunctions(TestCase):
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class Layer(TestCase):
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class SimpleLayer(TestCase):
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
from time import sleep
|
||||
|
||||
class TextOverlay(TestCase):
|
||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class Timeline(TestCase):
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class TimelineFileSource(TestCase):
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
from time import sleep
|
||||
|
||||
class ParseLaunchEffect(TestCase):
|
||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class TimelinePipeline(TestCase):
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class TimelineTestSource(TestCase):
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class TimelineTitleSource(TestCase):
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class Track(TestCase):
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
|||
import gst
|
||||
|
||||
from common import TestCase
|
||||
from gst import ges
|
||||
import ges
|
||||
|
||||
class Timeline(TestCase):
|
||||
|
||||
|
|
Loading…
Reference in a new issue