mmplaylist_fmt_list_t

List of supported playlist formats

Synopsis:

#include <mm/mmplaylist.h>
typedef struct mmplaylist_fmt_list {
    int num_extensions;
    const char *const* playlist_extensions;
    int num_mimetypes;
    const char *const* playlist_mimetypes;
} mmplaylist_fmt_list_t;

Data:

int num_extensions
The number of filename extensions that are supported.
const char *const* playlist_extensions
An array of strings containing the supported extensions.
int num_mimetypes
The number of MIME types that are supported.
const char *const* playlist_mimetypes
An array of strings containing the supported MIME types.

Library:

libmmplaylist

Description:

The mmplaylist_fmt_list_t structure stores the list of supported playlist formats. This structure is filled in and returned to the client by mmplaylist_supported_fmts_get(). When finished using this information, the client must free the structure by calling mmplaylist_supported_fmts_release().