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
|
/*****************************************************************
* 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 <cdio/cdio.h> // Version
/* Stuff defined by cdio includes */
#undef PACKAGE
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#undef VERSION
#include "avdec_common.h"
static int open_vcd(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_vcd(avdec->dec, location))
return 0;
return 1;
}
static bg_device_info_t * find_devices_vcd()
{
bg_device_info_t * ret;
bgav_device_info_t * dev;
dev = bgav_find_devices_vcd();
ret = bg_avdec_get_devices(dev);
bgav_device_info_destroy(dev);
return ret;
}
static int check_device_vcd(const char * device, char ** name)
{
return bgav_check_device_vcd(device, name);
}
static char const * const protocols = "vcd";
static const char * get_protocols(void * priv)
{
return protocols;
}
const bg_input_plugin_t the_plugin =
{
.common =
{
BG_LOCALE,
.name = "i_vcd",
.long_name = TRS("VCD Player"),
.description = TRS("Plugin for playing VCDs. 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_vcd,
// .set_parameter = bg_avdec_set_parameter
.find_devices = find_devices_vcd,
.check_device = check_device_vcd,
.get_controllable = bg_avdec_get_controllable,
},
.get_protocols = get_protocols,
/* Open file/device */
.open = open_vcd,
// .set_callbacks = set_callbacks_avdec,
.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)
*/
/* 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;
|