~ubuntu-branches/ubuntu/saucy/totem/saucy-proposed

« back to all changes in this revision

Viewing changes to src/video-utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Loic Minier, Sebastien Bacher, Loic Minier
  • Date: 2007-03-08 14:51:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070308145155-cnu1r0s1z4ffcxza
Tags: 2.16.5-3
[ Sebastien Bacher ]
* debian/patches/30_dlopen_noremove_dbus_glib.dpatch:
  - fix "crash because NPPVpluginKeepLibraryInMemory is broken in gecko",
    patch from Alexander Sack (GNOME bug #415389)

[ Loic Minier ]
* Urgency medium.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
#include <gdk/gdk.h>
3
 
#include <gtk/gtk.h>
4
 
 
5
 
void eel_gdk_window_set_invisible_cursor (GdkWindow *window);
6
 
void totem_gdk_window_set_always_on_top (GdkWindow *window, gboolean setting);
7
 
 
8
 
void yuy2toyv12 (guint8 *y, guint8 *u, guint8 *v, guint8 *input,
9
 
                 int width, int height);
10
 
guint8 *yv12torgb (guint8 *src_y, guint8 *src_u, guint8 *src_v,
11
 
                   int width, int height);
12
 
 
13
 
void totem_create_symlinks (const char *orig, const char *dest);
14
 
gboolean totem_display_is_local (void);
15
 
void totem_pixbuf_mirror (GdkPixbuf *pixbuf);
16
 
 
17
 
char *totem_time_to_string (gint64 msecs);
18
 
char *totem_time_to_string_text (gint64 msecs);
19
 
 
20
 
void totem_widget_set_preferred_size (GtkWidget *widget, gint width,
21
 
                                      gint height);
22
 
gboolean totem_ratio_fits_screen (GdkWindow *window, int video_width,
23
 
                                  int video_height, gfloat ratio);
24