FJMovieEditor Pré-Alpha
A GTK video editor for GNOME. Designed for Artists to do, special effects, compositing and animation.

trunk/libfjme/video.h File Reference

#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gtk/gtk.h>
#include "basic.h"
Include dependency graph for video.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  VideoFrame
struct  Layer
 This structure represents a layer of video. More...
struct  Pixelf
struct  Pixeld
struct  Pixel

Defines

#define GetPixeIntf(pixbuf, x,y)   GetPixelf( pixbuf, gdk_pixbuf_get_width(pixbuf) / 2 + x, gdk_pixbuf_get_height(pixbuf) / 2 + y )
 Get a pixel in the x and y coordinates of a GdkPixbuf. The difference is that 0 is the center of the screen.
#define SetPixeIntf(pixbuf, x,y, p)   SetPixelf( pixbuf, gdk_pixbuf_get_width(pixbuf) / 2 + x, gdk_pixbuf_get_height(pixbuf) / 2 + y, p )
 Set a pixel in the x and y coordinates of a GdkPixbuf. The difference is that 0 is the center of the screen.
#define GetPixelFloatf(pixbuf, x, y)   GetPixeIntf( pixbuf, x*(gdk_pixbuf_get_width(pixbuf) / 2) , y*(gdk_pixbuf_get_height(pixbuf)/2) )
#define SetPixelFloatf(pixbuf, x, y, p)   SetPixeIntf( pixbuf, x*(gdk_pixbuf_get_width(pixbuf) / 2) , y*(gdk_pixbuf_get_height(pixbuf)/2), p )
#define fjme_image_from_file(file)   gtk_image_new_from_pixbuf( gdk_pixbuf_new_from_file(file, NULL) )
#define pixbuf_draw_fullcreen(dst, src)
 Occupies the entire space of GdkPixbuf destination, with the source. without rescaling it.

Typedefs

typedef struct Layer Layer
typedef struct Pixel Pixel
typedef struct Pixelf Pixelf
typedef struct Pixeld Pixeld
typedef struct VideoFrame VideoFrame

Functions

void SetPixel (GdkPixbuf *pixbuf, guint32 x, guint32 y, Pixel *p)
 Draws a single pixel in Pixbuf.
PixelGetPixel (GdkPixbuf *pixbuf, guint32 x, guint32 y)
 Get a pointer (reading and writing) to the pixels of a pixbuf.
Pixelf GetPixelf (GdkPixbuf *pixbuf, guint32 x, guint32 y)
void SetPixelf (GdkPixbuf *pixbuf, guint32 x, guint32 y, Pixelf pf)
LayeraddEmptyVideoLayer (guint32 width, guint32 height)
gboolean LayerSet (Layer *layer)
 Prepare an existing layer, to use.
LayerfindLayerByName (gchar *name)
gboolean pixbuf_draw (GdkPixbuf *dst, GdkPixbuf *src, guint32 x, guint32 y, guint32 width, guint32 height)
 Draw a GdkPixbuf into another GdkPixbuf.
gboolean pixbuf_draw_simple (GdkPixbuf *dst, GdkPixbuf *src, guint32 x, guint32 y)
 Draw a GdkPixbuf, pixel by pixel, without rescaling it. The destination image The source image. The x position in the destination image The y position in the destination image.
void layer_window_show (GtkWidget *widget, gpointer data)

Define Documentation

#define fjme_image_from_file (   file)    gtk_image_new_from_pixbuf( gdk_pixbuf_new_from_file(file, NULL) )
#define GetPixeIntf (   pixbuf,
  x,
 
)    GetPixelf( pixbuf, gdk_pixbuf_get_width(pixbuf) / 2 + x, gdk_pixbuf_get_height(pixbuf) / 2 + y )

Get a pixel in the x and y coordinates of a GdkPixbuf. The difference is that 0 is the center of the screen.

#define GetPixelFloatf (   pixbuf,
  x,
 
)    GetPixeIntf( pixbuf, x*(gdk_pixbuf_get_width(pixbuf) / 2) , y*(gdk_pixbuf_get_height(pixbuf)/2) )
#define pixbuf_draw_fullcreen (   dst,
  src 
)
Value:
pixbuf_draw( dst, src, 0, 0, \
gdk_pixbuf_get_width(dst), gdk_pixbuf_get_height(dst))

Occupies the entire space of GdkPixbuf destination, with the source. without rescaling it.

The destination image The source image.

#define SetPixeIntf (   pixbuf,
  x,
  y,
 
)    SetPixelf( pixbuf, gdk_pixbuf_get_width(pixbuf) / 2 + x, gdk_pixbuf_get_height(pixbuf) / 2 + y, p )

Set a pixel in the x and y coordinates of a GdkPixbuf. The difference is that 0 is the center of the screen.

#define SetPixelFloatf (   pixbuf,
  x,
  y,
 
)    SetPixeIntf( pixbuf, x*(gdk_pixbuf_get_width(pixbuf) / 2) , y*(gdk_pixbuf_get_height(pixbuf)/2), p )

Typedef Documentation

typedef struct Layer Layer
typedef struct Pixel Pixel
typedef struct Pixeld Pixeld
typedef struct Pixelf Pixelf
typedef struct VideoFrame VideoFrame

Function Documentation

Layer* addEmptyVideoLayer ( guint32  width,
guint32  height 
)

Here is the call graph for this function:

Here is the caller graph for this function:

Layer* findLayerByName ( gchar *  name)
Pixel* GetPixel ( GdkPixbuf *  pixbuf,
guint32  x,
guint32  y 
)

Get a pointer (reading and writing) to the pixels of a pixbuf.

Author:
Fabio J. Gonzalez

Here is the caller graph for this function:

Pixelf GetPixelf ( GdkPixbuf *  pixbuf,
guint32  x,
guint32  y 
)

Here is the call graph for this function:

Here is the caller graph for this function:

void layer_window_show ( GtkWidget *  widget,
gpointer  data 
)

Here is the caller graph for this function:

gboolean LayerSet ( Layer layer)

Prepare an existing layer, to use.

Author:
Fabio J. Gonzalez

Here is the call graph for this function:

Here is the caller graph for this function:

gboolean pixbuf_draw ( GdkPixbuf *  dst,
GdkPixbuf *  src,
guint32  x,
guint32  y,
guint32  width,
guint32  height 
)

Draw a GdkPixbuf into another GdkPixbuf.

Returns true if can draw the entire image, false if not The destination image The source image. The x position in the destination image The y position in the destination image The new image size width at the destination. The new image size height at the destination.

Author:
Fabio J. Gonzalez

Here is the call graph for this function:

gboolean pixbuf_draw_simple ( GdkPixbuf *  dst,
GdkPixbuf *  src,
guint32  x,
guint32  y 
)

Draw a GdkPixbuf, pixel by pixel, without rescaling it. The destination image The source image. The x position in the destination image The y position in the destination image.

Here is the call graph for this function:

void SetPixel ( GdkPixbuf *  pixbuf,
guint32  x,
guint32  y,
Pixel p 
)

Draws a single pixel in Pixbuf.

void SetPixelf ( GdkPixbuf *  pixbuf,
guint32  x,
guint32  y,
Pixelf  pf 
)

Here is the call graph for this function:

Here is the caller graph for this function:

All Data Structures Files Functions Variables Typedefs Defines