Added GdkPixbuf image loader (jpeg,png,...) , changed VIMS 330 (screenshot), new VIMS 247 (open image), images can be added to the editlist with add video file, bugfix in Gveejay open file dialog, some other smaller fixes

git-svn-id: svn://code.dyne.org/veejay/trunk@351 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
Niels Elburg
2005-06-20 20:05:26 +00:00
parent 143fedfdf3
commit 3cadb7226c
20 changed files with 687 additions and 178 deletions

View File

@@ -66,6 +66,9 @@ typedef struct
#endif
int jpeg_fd;
char *jpeg_filename;
#ifdef USE_GDK_PIXBUF
void *picture;
#endif
int format;
int interlacing;
int sar_w; /* "clip aspect ratio" width */
@@ -113,5 +116,8 @@ int lav_get_field_size(uint8_t * jpegdata, long jpeglen);
const char *lav_strerror(void);
int lav_fileno( lav_file_t *lav_file );
void lav_set_default_chroma(int c);
#ifdef USE_GDK_PIXBUF
uint8_t *lav_get_frame_ptr( lav_file_t *lav_file );
void lav_set_project( int w, int h, float fps, int shift );
#endif
#endif