/usr/include/ogmrip/ogmrip-player.h is in libogmrip-dev 1.0.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* OGMRip - A library for DVD ripping and encoding
* Copyright (C) 2004-2012 Olivier Rolland <billl@users.sourceforge.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __OGMRIP_PLAYER_H__
#define __OGMRIP_PLAYER_H__
#include <glib-object.h>
#include <ogmdvd.h>
#include <ogmrip-file.h>
G_BEGIN_DECLS
#define OGMRIP_TYPE_PLAYER (ogmrip_player_get_type ())
#define OGMRIP_PLAYER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), OGMRIP_TYPE_PLAYER, OGMRipPlayer))
#define OGMRIP_PLAYER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), OGMRIP_TYPE_PLAYER, OGMRipPlayerClass))
#define OGMRIP_IS_PLAYER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), OGMRIP_TYPE_PLAYER))
#define OGMRIP_IS_PLAYER_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE ((klass), OGMRIP_TYPE_PLAYER))
typedef struct _OGMRipPlayer OGMRipPlayer;
typedef struct _OGMRipPlayerPriv OGMRipPlayerPriv;
typedef struct _OGMRipPlayerClass OGMRipPlayerClass;
struct _OGMRipPlayer
{
GObject parent_instance;
OGMRipPlayerPriv *priv;
};
struct _OGMRipPlayerClass
{
GObjectClass parent_class;
void (* play) (OGMRipPlayer *player);
void (* stop) (OGMRipPlayer *player);
};
GType ogmrip_player_get_type (void);
OGMRipPlayer * ogmrip_player_new (void);
void ogmrip_player_set_title (OGMRipPlayer *player,
OGMDvdTitle *title);
void ogmrip_player_set_audio_stream (OGMRipPlayer *player,
OGMDvdAudioStream *stream);
void ogmrip_player_set_audio_file (OGMRipPlayer *player,
OGMRipFile *file);
void ogmrip_player_set_subp_stream (OGMRipPlayer *player,
OGMDvdSubpStream *stream);
void ogmrip_player_set_subp_file (OGMRipPlayer *player,
OGMRipFile *file);
void ogmrip_player_set_chapters (OGMRipPlayer *player,
guint start,
gint end);
gboolean ogmrip_player_play (OGMRipPlayer *player,
GError **error);
void ogmrip_player_stop (OGMRipPlayer *player);
G_END_DECLS
#endif /* __OGMRIP_PLAYER_H__ */
|