1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2012 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.net
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <config.h>
#include <gmerlin/translation.h>
#include <gmerlin/plugin.h>
#include <gmerlin/utils.h>
#include <avdec.h>
#include "avdec_common.h"
#include <cdio/cdio.h> // Version
static int open_dvd(void * priv, const char * location)
{
bgav_options_t * opt;
avdec_priv * avdec = priv;
avdec->dec = bgav_create();
opt = bgav_get_options(avdec->dec);
bgav_options_copy(opt, avdec->opt);
if(!bgav_open_dvd(avdec->dec, location))
return 0;
return 1;
}
static bg_device_info_t * find_devices_dvd()
{
bg_device_info_t * ret;
bgav_device_info_t * dev;
dev = bgav_find_devices_dvd();
ret = bg_avdec_get_devices(dev);
bgav_device_info_destroy(dev);
return ret;
}
static int check_device_dvd(const char * device, char ** name)
{
return bgav_check_device_dvd(device, name);
}
static const bg_parameter_info_t parameters[] =
{
#if 0
{
.name = "dvd_chapters_as_tracks",
.long_name = TRS("Handle chapters as tracks"),
.type = BG_PARAMETER_CHECKBUTTON,
.val_default = GAVL_VALUE_INIT_INT(1),
.gettext_domain = PACKAGE,
.gettext_directory = LOCALE_DIR,
},
#endif
PARAM_DYNRANGE,
{ /* End of parameters */ }
};
static const bg_parameter_info_t * get_parameters_dvd(void * priv)
{
return parameters;
}
static char const * const protocols = "dvd";
static const char * get_protocols(void * priv)
{
return protocols;
}
const bg_input_plugin_t the_plugin =
{
.common =
{
BG_LOCALE,
.name = "i_dvd",
.long_name = TRS("DVD Player"),
.description = TRS("Plugin for playing DVDs. Based on Gmerlin avdecoder."),
.type = BG_PLUGIN_INPUT,
.flags = BG_PLUGIN_REMOVABLE,
.priority = BG_PLUGIN_PRIORITY_MAX,
.create = bg_avdec_create,
.destroy = bg_avdec_destroy,
.get_parameters = get_parameters_dvd,
.set_parameter = bg_avdec_set_parameter,
.find_devices = find_devices_dvd,
.check_device = check_device_dvd,
.get_controllable = bg_avdec_get_controllable,
},
.get_protocols = get_protocols,
/* Open file/device */
.open = open_dvd,
.get_media_info = bg_avdec_get_media_info,
.skip_video = bg_avdec_skip_video,
.get_src = bg_avdec_get_src,
/*
* Do percentage seeking (can be NULL)
* Media streams are supposed to be seekable, if this
* function is non-NULL AND the duration field of the track info
* is > 0
*/
/* Stop playback, close all decoders */
.stop = NULL,
.close = bg_avdec_close,
};
/* Include this into all plugin modules exactly once
to let the plugin loader obtain the API version */
BG_GET_PLUGIN_API_VERSION;
|