GUPnPDLNAProfile

GUPnPDLNAProfile — Object representing a DLNA profile

Functions

Properties

gpointer audio-restrictions Read / Write / Construct Only
gpointer container-restrictions Read / Write / Construct Only
gboolean extended Read / Write / Construct Only
gpointer image-restrictions Read / Write / Construct Only
gchar * mime Read / Write / Construct Only
gchar * name Read / Write / Construct Only
gpointer video-restrictions Read / Write / Construct Only

Types and Values

Object Hierarchy

    GObject
    ╰── GUPnPDLNAProfile

Description

The GUPnPDLNAProfileGuesser object provides a few APIs that return GUPnPDLNAProfile objects. These represent a single DLNA profile. Each GUPnPDLNAProfile has a name (the name of the DLNA profile) and the corresponding MIME type.

Public representation of the various audio/container/image/video restrictions specified for that DLNA profile is to be added.

Functions

gupnp_dlna_profile_get_name ()

const gchar *
gupnp_dlna_profile_get_name (GUPnPDLNAProfile *profile);

Parameters

profile

The GUPnPDLNAProfile object.

 

Returns

The name of the DLNA profile represented by profile .


gupnp_dlna_profile_get_mime ()

const gchar *
gupnp_dlna_profile_get_mime (GUPnPDLNAProfile *profile);

Parameters

profile

The GUPnPDLNAProfile object.

 

Returns

The DLNA MIME type of the DLNA profile represented by profile .


gupnp_dlna_profile_get_extended ()

gboolean
gupnp_dlna_profile_get_extended (GUPnPDLNAProfile *profile);

Parameters

profile

The GUPnPDLNAProfile object.

 

Returns

TRUE if profile is extended one and FALSE otherwise.


gupnp_dlna_profile_get_container_restrictions ()

GList *
gupnp_dlna_profile_get_container_restrictions
                               (GUPnPDLNAProfile *profile);

Gets a list of container restrictions.

Parameters

profile

A profile.

[transfer none]

Returns

Container restrictions. Do not modify.

[transfer none][element-type GUPnPDLNARestriction]


gupnp_dlna_profile_get_audio_restrictions ()

GList *
gupnp_dlna_profile_get_audio_restrictions
                               (GUPnPDLNAProfile *profile);

Gets a list of audio restrictions.

Parameters

profile

A profile.

[transfer none]

Returns

Audio restrictions. Do not modify.

[transfer none][element-type GUPnPDLNARestriction]


gupnp_dlna_profile_get_image_restrictions ()

GList *
gupnp_dlna_profile_get_image_restrictions
                               (GUPnPDLNAProfile *profile);

Gets a list of image restrictions.

Parameters

profile

A profile.

[transfer none]

Returns

Image restrictions. Do not modify.

[transfer none][element-type GUPnPDLNARestriction]


gupnp_dlna_profile_get_video_restrictions ()

GList *
gupnp_dlna_profile_get_video_restrictions
                               (GUPnPDLNAProfile *profile);

Gets a list of video restrictions.

Parameters

profile

A profile.

[transfer none]

Returns

Video restrictions. Do not modify.

[transfer none][element-type GUPnPDLNARestriction]

Types and Values

GUPnPDLNAProfile

typedef struct _GUPnPDLNAProfile GUPnPDLNAProfile;

The top-level object used for the in-memory representation of the DLNA Profiles.


GUPnPDLNAProfileClass

typedef struct {
        GObjectClass parent_class;
} GUPnPDLNAProfileClass;

Members

Property Details

The “audio-restrictions” property

  “audio-restrictions”       gpointer

Audio restrictions for the DLNA Profile.

Flags: Read / Write / Construct Only


The “container-restrictions” property

  “container-restrictions”   gpointer

Container restrictions for the DLNA Profile.

Flags: Read / Write / Construct Only


The “extended” property

  “extended”                 gboolean

Whether the DLNA profile is not a part of DLNA specification.

Flags: Read / Write / Construct Only

Default value: FALSE


The “image-restrictions” property

  “image-restrictions”       gpointer

Image restrictions for the DLNA Profile.

Flags: Read / Write / Construct Only


The “mime” property

  “mime”                     gchar *

MIME type of the DLNA profile.

Flags: Read / Write / Construct Only

Default value: NULL


The “name” property

  “name”                     gchar *

Name of the DLNA profile.

Flags: Read / Write / Construct Only

Default value: NULL


The “video-restrictions” property

  “video-restrictions”       gpointer

Video restrictions for the DLNA Profile.

Flags: Read / Write / Construct Only