~fcwu-tw/ubuntu/precise/totem/fix-for-lp-1041032

« back to all changes in this revision

Viewing changes to browser-plugin/marshal.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-08-12 13:09:09 UTC
  • mfrom: (1.11.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20100812130909-hzn8tsoh9z7t3dbx
Tags: 2.31.6-0ubuntu1
* New upstream version:
  - Add support for Web-M to browser, movie player, and YouTube plugin
  Movie Player:
  - Add deinterlacing support, automatically used for interlaced content
  - Do not block when loading playlists
  - Remove libunique dependency
  - Make auto-resize use half-scale or 2x if the player would fit on the 
    screen
  - Make screensaver preference clearer
  - Support running with RGBA (semi-transparent) GTK+ themes
  Plugins:
  - Update for YouTube website changes
  Browser plugin:
  - Fix running browser plugin in non-GTK+ front-ends
  - VLC-compatible browser plugin:
  - Support input.time and input.length property
  - Support togglePause function
  - Support toolbar plugin argument
* debian/control.in:
  - updated the build requirements to match the configure
* debian/patches/80_webm.patch,
  debian/patches/81_mpegts.patch,
  debian/patches/91_git_correct_rgba_use.patch:
  - the changes are in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#define g_marshal_value_peek_boxed(v)    g_value_get_boxed (v)
26
26
#define g_marshal_value_peek_pointer(v)  g_value_get_pointer (v)
27
27
#define g_marshal_value_peek_object(v)   g_value_get_object (v)
 
28
#define g_marshal_value_peek_variant(v)  g_value_get_variant (v)
28
29
#else /* !G_ENABLE_DEBUG */
29
30
/* WARNING: This code accesses GValues directly, which is UNSUPPORTED API.
30
31
 *          Do not access GValues directly in your code. Instead, use the
48
49
#define g_marshal_value_peek_boxed(v)    (v)->data[0].v_pointer
49
50
#define g_marshal_value_peek_pointer(v)  (v)->data[0].v_pointer
50
51
#define g_marshal_value_peek_object(v)   (v)->data[0].v_pointer
 
52
#define g_marshal_value_peek_variant(v)  (v)->data[0].v_pointer
51
53
#endif /* !G_ENABLE_DEBUG */
52
54
 
53
55