~ubuntu-branches/ubuntu/quantal/gecko-mediaplayer/quantal

« back to all changes in this revision

Viewing changes to src/plugin_list.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2011-07-17 22:24:37 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20110717222437-f0skmzay316o4rve
Tags: 1.0.4-0ubuntu1
* New upstream release.
* debian/patches:
 - 90_svn420_fix_null.patch: Remove, merged upstream.
 - 91_svn421_disable_npp_initialize.patch: Remove, merged upstream.
 - dont_use_libxul.patch: Remove, fixed upstream.
 - autotools.patch: Remove, not needed now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
#include <string.h>
44
44
#include "memmem_compat.h"
45
45
 
46
 
 
47
46
typedef struct _ListItem {
48
47
    gchar src[4096];
49
48
    gchar local[1024];
68
67
    gint loopcount;             // 0 - loop done, -1 loop forever
69
68
    gint bitrate;
70
69
    gint bitrate_requests;
 
70
    void *plugin;
71
71
} ListItem;
72
72
 
73
73
 
113
113
void list_mark_controlid_cancelled(GList * list, gint id, gboolean cancelled);
114
114
void list_mark_id_played(GList * list, gint id);
115
115
ListItem *list_find_next_playable(GList * list);
116
 
void list_qualify_url(GList * list, gchar *page_url);
 
116
void list_qualify_url(GList * list, gchar * page_url);
117
117
GList *list_clear(GList * list);
118
118
void list_dump(GList * list);
119
119
GList *list_parse_qt(GList * list, ListItem * item);