~ubuntu-branches/ubuntu/trusty/totem/trusty-proposed

« back to all changes in this revision

Viewing changes to src/plparse/totem-pl-parser-builtins.c

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Josselin Mouette, Loic Minier, Sjoerd Simons
  • Date: 2008-09-10 15:38:34 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080910153834-kxne946nj2b5squf
Tags: 2.22.2-4
[ Josselin Mouette ]
* Change the recommends on g-c-c to one on g-s-d. Also move it to
  totem-plugins, which is the package providing the media keys
  functionality.
* Change the depends on dbus to dbus-x11.

[ Loic Minier ]
* Let totem-gstreamer recommend gnome-app-install for easy codec
  installation.

[ Josselin Mouette ]
* 02_flv.patch: the canonical MIME type for Flash videos is 
  video/x-flv, not video/flv. Closes: #486468.

[ Sjoerd Simons ]
* 30_fix_youtube_plugin.patch: Set the server as a keyword argument to be
  compatible with both old and new versions of python-gdata. Fixes searching
  for youtube videos
* debian/control.in: Fix double Recommend field for totem-gstreamer

[ Josselin Mouette ]
* rules: rally disable the vala plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
/* Generated data (by glib-mkenums) */
3
 
 
4
 
#include "totem-pl-parser.h"
5
 
#include "totem-pl-parser-builtins.h"
6
 
 
7
 
/* enumerations from "totem-pl-parser.h" */
8
 
GType
9
 
totem_pl_parser_result_get_type (void)
10
 
{
11
 
  static GType etype = 0;
12
 
  if (etype == 0) {
13
 
    static const GEnumValue values[] = {
14
 
      { TOTEM_PL_PARSER_RESULT_UNHANDLED, "TOTEM_PL_PARSER_RESULT_UNHANDLED", "unhandled" },
15
 
      { TOTEM_PL_PARSER_RESULT_ERROR, "TOTEM_PL_PARSER_RESULT_ERROR", "error" },
16
 
      { TOTEM_PL_PARSER_RESULT_SUCCESS, "TOTEM_PL_PARSER_RESULT_SUCCESS", "success" },
17
 
      { TOTEM_PL_PARSER_RESULT_IGNORED, "TOTEM_PL_PARSER_RESULT_IGNORED", "ignored" },
18
 
      { 0, NULL, NULL }
19
 
    };
20
 
    etype = g_enum_register_static ("TotemPlParserResult", values);
21
 
  }
22
 
  return etype;
23
 
}
24
 
GType
25
 
totem_pl_parser_type_get_type (void)
26
 
{
27
 
  static GType etype = 0;
28
 
  if (etype == 0) {
29
 
    static const GEnumValue values[] = {
30
 
      { TOTEM_PL_PARSER_PLS, "TOTEM_PL_PARSER_PLS", "pls" },
31
 
      { TOTEM_PL_PARSER_M3U, "TOTEM_PL_PARSER_M3U", "m3u" },
32
 
      { TOTEM_PL_PARSER_M3U_DOS, "TOTEM_PL_PARSER_M3U_DOS", "m3u-dos" },
33
 
      { TOTEM_PL_PARSER_XSPF, "TOTEM_PL_PARSER_XSPF", "xspf" },
34
 
      { 0, NULL, NULL }
35
 
    };
36
 
    etype = g_enum_register_static ("TotemPlParserType", values);
37
 
  }
38
 
  return etype;
39
 
}
40
 
GType
41
 
totem_pl_parser_error_get_type (void)
42
 
{
43
 
  static GType etype = 0;
44
 
  if (etype == 0) {
45
 
    static const GEnumValue values[] = {
46
 
      { TOTEM_PL_PARSER_ERROR_VFS_OPEN, "TOTEM_PL_PARSER_ERROR_VFS_OPEN", "open" },
47
 
      { TOTEM_PL_PARSER_ERROR_VFS_WRITE, "TOTEM_PL_PARSER_ERROR_VFS_WRITE", "write" },
48
 
      { 0, NULL, NULL }
49
 
    };
50
 
    etype = g_enum_register_static ("TotemPlParserError", values);
51
 
  }
52
 
  return etype;
53
 
}
54
 
 
55
 
/* Generated data ends here */
56