PageRenderTime 39ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/indra/media_plugins/gstreamer010/llmediaimplgstreamer.h

https://bitbucket.org/lindenlab/viewer-beta/
C++ Header | 53 lines | 16 code | 8 blank | 29 comment | 0 complexity | 0c5185c06a8c1f08f45de567af583b43 MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file llmediaimplgstreamer.h
  3. * @author Tofu Linden
  4. * @brief implementation that supports media playback via GStreamer.
  5. *
  6. * @cond
  7. * $LicenseInfo:firstyear=2007&license=viewerlgpl$
  8. * Second Life Viewer Source Code
  9. * Copyright (C) 2010, Linden Research, Inc.
  10. *
  11. * This library is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU Lesser General Public
  13. * License as published by the Free Software Foundation;
  14. * version 2.1 of the License only.
  15. *
  16. * This library is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * Lesser General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Lesser General Public
  22. * License along with this library; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  24. *
  25. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  26. * $/LicenseInfo$
  27. * @endcond
  28. */
  29. // header guard
  30. #ifndef llmediaimplgstreamer_h
  31. #define llmediaimplgstreamer_h
  32. #if LL_GSTREAMER010_ENABLED
  33. extern "C" {
  34. #include <stdio.h>
  35. #include <gst/gst.h>
  36. #include "apr_pools.h"
  37. #include "apr_dso.h"
  38. }
  39. extern "C" {
  40. gboolean llmediaimplgstreamer_bus_callback (GstBus *bus,
  41. GstMessage *message,
  42. gpointer data);
  43. }
  44. #endif // LL_GSTREAMER010_ENABLED
  45. #endif // llmediaimplgstreamer_h