| Top |
A Playspeed can be positive or negative whole numbers or fractions. e.g. "2". "1/2", "-1/4"
#define RYGEL_TYPE_PLAY_SPEED (rygel_play_speed_get_type ())
The type for RygelPlaySpeed.
struct RygelPlaySpeed {
GTypeInstance parent_instance;
volatile int ref_count;
RygelPlaySpeedPrivate * priv;
gint numerator;
guint denominator;
};
This is a container for a PlaySpeed value.
A Playspeed can be positive or negative whole numbers or fractions. e.g. "2". "1/2", "-1/4"
struct RygelPlaySpeedClass {
GTypeClass parent_class;
void (*finalize) (RygelPlaySpeed *self);
};
The class structure for RYGEL_TYPE_PLAY_SPEED. All the fields in this structure are private and should never be accessed directly.