~oah-dev/oah/gst-plugins-bad

« back to all changes in this revision

Viewing changes to sys/qtwrapper/qtwrapper.c

  • Committer: Haakon Sporsheim
  • Date: 2009-03-12 13:52:03 UTC
  • Revision ID: haakon.sporsheim@tandberg.com-20090312135203-i5k294hgkushb0mt
Initial import of git repository: git://anongit.freedesktop.org/gstreamer/gst-plugins-bad (tag: RELEASE-0_10_10)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * GStreamer QuickTime codecs wrapper
 
3
 * Copyright <2006, 2007> Fluendo <gstreamer@fluendo.com>
 
4
 * Copyright <2006, 2007> Pioneers of the Inevitable <songbird@songbirdnest.com>
 
5
 *
 
6
 * Permission is hereby granted, free of charge, to any person obtaining a
 
7
 * copy of this software and associated documentation files (the "Software"),
 
8
 * to deal in the Software without restriction, including without limitation
 
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
10
 * and/or sell copies of the Software, and to permit persons to whom the
 
11
 * Software is furnished to do so, subject to the following conditions:
 
12
 *
 
13
 * The above copyright notice and this permission notice shall be included in
 
14
 * all copies or substantial portions of the Software.
 
15
 *
 
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
19
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
20
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
21
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
22
 * DEALINGS IN THE SOFTWARE.
 
23
 *
 
24
 * Alternatively, the contents of this file may be used under the
 
25
 * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
 
26
 * which case the following provisions apply instead of the ones
 
27
 * mentioned above:
 
28
 *
 
29
 * This library is free software; you can redistribute it and/or
 
30
 * modify it under the terms of the GNU Library General Public
 
31
 * License as published by the Free Software Foundation; either
 
32
 * version 2 of the License, or (at your option) any later version.
 
33
 *
 
34
 * This library is distributed in the hope that it will be useful,
 
35
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
36
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
37
 * Library General Public License for more details.
 
38
 *
 
39
 * You should have received a copy of the GNU Library General Public
 
40
 * License along with this library; if not, write to the
 
41
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
42
 * Boston, MA 02111-1307, USA.
 
43
 */
 
44
 
 
45
#ifdef HAVE_CONFIG_H
 
46
#  include <config.h>
 
47
#endif
 
48
 
 
49
#include "qtwrapper.h"
 
50
#include <stdio.h>
 
51
 
 
52
GST_DEBUG_CATEGORY (qtwrapper_debug);
 
53
 
 
54
static gboolean
 
55
plugin_init (GstPlugin * plugin)
 
56
{
 
57
  gboolean res;
 
58
  OSErr status;
 
59
 
 
60
  GST_DEBUG_CATEGORY_INIT (qtwrapper_debug, "qtwrapper",
 
61
      0, "QuickTime codecs wrappers");
 
62
 
 
63
  /* Initialize quicktime environment */
 
64
#ifdef G_OS_WIN32
 
65
  /* Only required on win32 */
 
66
  InitializeQTML (0);
 
67
#endif
 
68
 
 
69
  status = EnterMovies ();
 
70
  if (status) {
 
71
    GST_ERROR ("Error initializing QuickTime environment: %d", status);
 
72
    return FALSE;
 
73
  }
 
74
 
 
75
  GST_INFO ("Registering video decoders");
 
76
  res = qtwrapper_video_decoders_register (plugin);
 
77
  GST_INFO ("Registering audio decoders");
 
78
  res &= qtwrapper_audio_decoders_register (plugin);
 
79
 
 
80
  return res;
 
81
}
 
82
 
 
83
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
 
84
    GST_VERSION_MINOR,
 
85
    "qtwrapper",
 
86
    "QuickTime codecs wrapper",
 
87
    plugin_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/")