mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +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
|
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
|
# we install everything in pyexecdir; otherwise you end up with a mess for
|
||||||
# multilib
|
# multilib
|
||||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class GlobalFunctions(TestCase):
|
class GlobalFunctions(TestCase):
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class Layer(TestCase):
|
class Layer(TestCase):
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class SimpleLayer(TestCase):
|
class SimpleLayer(TestCase):
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
from time import sleep
|
from time import sleep
|
||||||
|
|
||||||
class TextOverlay(TestCase):
|
class TextOverlay(TestCase):
|
||||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class Timeline(TestCase):
|
class Timeline(TestCase):
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class TimelineFileSource(TestCase):
|
class TimelineFileSource(TestCase):
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
from time import sleep
|
from time import sleep
|
||||||
|
|
||||||
class ParseLaunchEffect(TestCase):
|
class ParseLaunchEffect(TestCase):
|
||||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class TimelinePipeline(TestCase):
|
class TimelinePipeline(TestCase):
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class TimelineTestSource(TestCase):
|
class TimelineTestSource(TestCase):
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class TimelineTitleSource(TestCase):
|
class TimelineTitleSource(TestCase):
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class Track(TestCase):
|
class Track(TestCase):
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ import glib
|
||||||
import gst
|
import gst
|
||||||
|
|
||||||
from common import TestCase
|
from common import TestCase
|
||||||
from gst import ges
|
import ges
|
||||||
|
|
||||||
class Timeline(TestCase):
|
class Timeline(TestCase):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue