mp3splt-gtk
gstreamer_control.c File Reference
#include <gst/gst.h>
#include "gstreamer_control.h"
Include dependency graph for gstreamer_control.c:

Go to the source code of this file.

Functions

void gstreamer_add_files (GList *list, ui_state *ui)
gchar * gstreamer_get_filename (ui_state *ui)
gint gstreamer_get_playlist_number (ui_state *ui)
void gstreamer_get_song_infos (gchar *total_infos, ui_state *ui)
gint gstreamer_get_time_elapsed (ui_state *ui)
gchar * gstreamer_get_title_song (ui_state *ui)
gint gstreamer_get_total_time (ui_state *ui)
gint gstreamer_get_volume (ui_state *ui)
gint gstreamer_is_paused (ui_state *ui)
gint gstreamer_is_playing (ui_state *ui)
gint gstreamer_is_running (ui_state *ui)
void gstreamer_jump (gint position, ui_state *ui)
void gstreamer_next (ui_state *ui)
void gstreamer_pause (ui_state *ui)
void gstreamer_play (ui_state *ui)
void gstreamer_play_last_file (ui_state *ui)
void gstreamer_prev (ui_state *ui)
void gstreamer_quit (ui_state *ui)
void gstreamer_select_last_file (ui_state *ui)
void gstreamer_set_volume (gint volume, ui_state *ui)
void gstreamer_start (ui_state *ui)
void gstreamer_start_with_songs (GList *list, ui_state *ui)
void gstreamer_stop (ui_state *ui)

Detailed Description


Control the gstreamer framework

this file has functions to control the 'internal'

  • gstreamer player

Definition in file gstreamer_control.c.

Function Documentation

void gstreamer_add_files ( GList *  list,
ui_state ui 
)

add files to the gstreamer playlist

Definition at line 401 of file gstreamer_control.c.

References add_playlist_file().

Referenced by gstreamer_start(), gstreamer_start_with_songs(), player_add_files(), and player_add_files_and_select().

Here is the call graph for this function:

Here is the caller graph for this function:

gchar* gstreamer_get_filename ( ui_state ui)

returns the filename

The result must be g_free'd after use.

Definition at line 250 of file gstreamer_control.c.

References get_input_filename().

Referenced by gstreamer_get_title_song(), and player_get_filename().

Here is the call graph for this function:

Here is the caller graph for this function:

gint gstreamer_get_playlist_number ( ui_state ui)

returns the number of songs of the playlist

Definition at line 262 of file gstreamer_control.c.

Referenced by player_get_playlist_number().

Here is the caller graph for this function:

void gstreamer_get_song_infos ( gchar *  total_infos,
ui_state ui 
)

Gets information about the< song.

Definition at line 177 of file gstreamer_control.c.

Referenced by player_get_song_infos().

Here is the caller graph for this function:

gint gstreamer_get_time_elapsed ( ui_state ui)

returns elapsed time

Definition at line 331 of file gstreamer_control.c.

Referenced by player_get_elapsed_time().

Here is the caller graph for this function:

gchar* gstreamer_get_title_song ( ui_state ui)

returns the title of the song

The result must be g_free'd after use

Definition at line 271 of file gstreamer_control.c.

References gstreamer_get_filename().

Referenced by player_get_title().

Here is the call graph for this function:

Here is the caller graph for this function:

gint gstreamer_get_total_time ( ui_state ui)

returns total time of the current song

Definition at line 569 of file gstreamer_control.c.

Referenced by player_get_total_time().

Here is the caller graph for this function:

gint gstreamer_get_volume ( ui_state ui)

returns volume

Definition at line 448 of file gstreamer_control.c.

Referenced by player_get_volume().

Here is the caller graph for this function:

gint gstreamer_is_paused ( ui_state ui)

returns TRUE if gstreamer is paused, if not, FALSE

Definition at line 477 of file gstreamer_control.c.

Referenced by player_is_paused().

Here is the caller graph for this function:

gint gstreamer_is_playing ( ui_state ui)

returns TRUE if gstreamer is playing, else FALSE

Definition at line 592 of file gstreamer_control.c.

Referenced by player_is_playing().

Here is the caller graph for this function:

gint gstreamer_is_running ( ui_state ui)

returns TRUE if gstreamer is running; if not, FALSE

Definition at line 471 of file gstreamer_control.c.

Referenced by player_is_running().

Here is the caller graph for this function:

void gstreamer_jump ( gint  position,
ui_state ui 
)

jump to time

Definition at line 556 of file gstreamer_control.c.

Referenced by gstreamer_play(), and player_seek().

Here is the caller graph for this function:

void gstreamer_next ( ui_state ui)

changes to next song

Definition at line 546 of file gstreamer_control.c.

Referenced by player_next().

Here is the caller graph for this function:

void gstreamer_pause ( ui_state ui)

pause a song

Definition at line 525 of file gstreamer_control.c.

References gstreamer_play().

Referenced by player_pause().

Here is the call graph for this function:

Here is the caller graph for this function:

void gstreamer_play ( ui_state ui)

plays a song

Definition at line 496 of file gstreamer_control.c.

References gstreamer_jump().

Referenced by gstreamer_pause(), gstreamer_play_last_file(), gstreamer_start_with_songs(), and player_play().

Here is the call graph for this function:

Here is the caller graph for this function:

void gstreamer_play_last_file ( ui_state ui)

plays the last file of the playlist

Definition at line 394 of file gstreamer_control.c.

References gstreamer_play(), and gstreamer_stop().

Referenced by player_add_play_files(), and player_start_play_with_songs().

Here is the call graph for this function:

Here is the caller graph for this function:

void gstreamer_prev ( ui_state ui)

changes to previous song

Definition at line 551 of file gstreamer_control.c.

Referenced by player_prev().

Here is the caller graph for this function:

void gstreamer_quit ( ui_state ui)

quits player

Definition at line 610 of file gstreamer_control.c.

Referenced by gstreamer_start(), and player_quit().

Here is the caller graph for this function:

void gstreamer_select_last_file ( ui_state ui)

selects the last file in the playlist

Definition at line 389 of file gstreamer_control.c.

Referenced by player_add_files_and_select().

Here is the caller graph for this function:

void gstreamer_set_volume ( gint  volume,
ui_state ui 
)

sets volume

Definition at line 437 of file gstreamer_control.c.

Referenced by player_set_volume().

Here is the caller graph for this function:

void gstreamer_start ( ui_state ui)

starts gstreamer

Definition at line 352 of file gstreamer_control.c.

References get_input_filename(), gstreamer_add_files(), gstreamer_quit(), and put_status_message().

Referenced by gstreamer_start_with_songs(), and player_start().

Here is the call graph for this function:

Here is the caller graph for this function:

void gstreamer_start_with_songs ( GList *  list,
ui_state ui 
)

starts gstreamer with songs

Definition at line 463 of file gstreamer_control.c.

References gstreamer_add_files(), gstreamer_play(), and gstreamer_start().

Referenced by player_start_add_files(), and player_start_play_with_songs().

Here is the call graph for this function:

Here is the caller graph for this function:

void gstreamer_stop ( ui_state ui)

stops a song

Definition at line 514 of file gstreamer_control.c.

Referenced by gstreamer_play_last_file(), and player_stop().

Here is the caller graph for this function: