~ci-train-bot/media-hub/media-hub-ubuntu-zesty-1823

« back to all changes in this revision

Viewing changes to src/core/media/backend.cpp

  • Committer: Bileto Bot
  • Date: 2016-08-15 21:07:12 UTC
  • mfrom: (203.1.7 media-hub-desktop)
  • Revision ID: ci-train-bot@canonical.com-20160815210712-taplugkglgfm5s9t
Make media-hub work on the desktop with Unity7/Unity8 sessions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical Ltd
 
3
 *
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of the License at
 
7
 *
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 *
 
16
 * Authored by: Jim Hodapp <jim.hodapp@canonical.com>
 
17
 */
 
18
 
 
19
#include <core/media/player.h>
 
20
#include "core/media/logger/logger.h"
 
21
 
 
22
#include <gst/gst.h>
 
23
 
 
24
namespace media = core::ubuntu::media;
 
25
 
 
26
media::AVBackend::Backend media::AVBackend::get_backend_type()
 
27
{
 
28
    GstRegistry *registry;
 
29
    GstPlugin *plugin;
 
30
 
 
31
    registry = gst_registry_get();
 
32
    if (not registry)
 
33
        return media::AVBackend::Backend::none;
 
34
 
 
35
    plugin = gst_registry_lookup(registry, "libgstandroidmedia.so");
 
36
    if (plugin)
 
37
    {
 
38
        gst_object_unref(plugin);
 
39
        return media::AVBackend::Backend::hybris;
 
40
    }
 
41
 
 
42
    return media::AVBackend::Backend::none;
 
43
}