Gnonlin

Gnonlin — Non-linear editing library based on the GStreamer multimedia framework

Synopsis




#define     GNL_VERSION_MAJOR
#define     GNL_VERSION_MINOR
#define     GNL_VERSION_MICRO
void        gnl_init                        (int *argc,
                                             char **argv[]);
void        gnl_main                        (void);
void        gnl_main_quit                   (void);

Description

GNonLin is a non-linear editing library built on top of the GStreamer multimedia framework to ease construction of non-linear editors (audio, video, ...).

Details

GNL_VERSION_MAJOR

#define GNL_VERSION_MAJOR 0


GNL_VERSION_MINOR

#define GNL_VERSION_MINOR 2


GNL_VERSION_MICRO

#define GNL_VERSION_MICRO 2


gnl_init ()

void        gnl_init                        (int *argc,
                                             char **argv[]);

Initializes the GStreamer library, setting up internal path lists, registering built-in elements, and loading standard plugins.

argc : pointer to application's argc
argv : pointer to application's argv

gnl_main ()

void        gnl_main                        (void);

Enter the main GStreamer processing loop


gnl_main_quit ()

void        gnl_main_quit                   (void);

Exits the main GStreamer processing loop

See Also

The GStreamer website for further details.