Sha256: f6686b8e6d332dfad632617eb989ee295744c7a2b3243d93808808fc03b8e95b

Contents?: true

Size: 1.8 KB

Versions: 27

Compression:

Stored size: 1.8 KB

Contents

# Copyright (C) 2013-2021  Ruby-GNOME Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

require "English"

require "gobject-introspection"

require "gst/loader"
require "gst/base-loader"
require "gst/controller-loader"

module Gst
  LOG_DOMAIN = "GStreamer"
  GLib::Log.set_log_domain(LOG_DOMAIN)

  class << self
    def const_missing(name)
      init
      if const_defined?(name)
        const_get(name)
      else
        super
      end
    end

    def method_missing(name, *args, &block)
      init
      if respond_to?(name)
        __send__(name, *args, &block)
      else
        super
      end
    end

    def init(*argv)
      class << self
        remove_method(:init)
        remove_method(:const_missing)
        remove_method(:method_missing)
      end
      loader = Loader.new(self, argv)
      loader.load
      init_base
      init_controller
    end

    private
    def init_base
      loader = GstBase::Loader.new(GstBase)
      loader.load
      Gst.include(GstBase)
    end

    def init_controller
      loader = GstController::Loader.new(GstController)
      loader.load
      Gst.include(GstController)
    end
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
gstreamer-4.2.4 lib/gst.rb
gstreamer-4.2.3 lib/gst.rb
gstreamer-4.2.2 lib/gst.rb
gstreamer-4.2.1 lib/gst.rb
gstreamer-4.2.0 lib/gst.rb
gstreamer-4.1.9 lib/gst.rb
gstreamer-4.1.8 lib/gst.rb
gstreamer-4.1.7 lib/gst.rb
gstreamer-4.1.6 lib/gst.rb
gstreamer-4.1.5 lib/gst.rb
gstreamer-4.1.4 lib/gst.rb
gstreamer-4.1.3 lib/gst.rb
gstreamer-4.1.2 lib/gst.rb
gstreamer-4.1.1 lib/gst.rb
gstreamer-4.1.0 lib/gst.rb
gstreamer-4.0.9 lib/gst.rb
gstreamer-4.0.8 lib/gst.rb
gstreamer-4.0.7 lib/gst.rb
gstreamer-4.0.6 lib/gst.rb
gstreamer-4.0.5 lib/gst.rb