Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 119575 | Differences between
and this patch

Collapse All | Expand All

(-)cinelerra-cvs-20051005/guicast/bclistbox.h (-1 / +1 lines)
Lines 354-360 Link Here
354
354
355
	int get_title_h();
355
	int get_title_h();
356
	int calculate_item_coords();
356
	int calculate_item_coords();
357
	void BC_ListBox::calculate_last_coords_recursive(
357
	void calculate_last_coords_recursive(
358
		ArrayList<BC_ListBoxItem*> *data,
358
		ArrayList<BC_ListBoxItem*> *data,
359
		int *icon_x,
359
		int *icon_x,
360
		int *next_icon_x,
360
		int *next_icon_x,
(-)cinelerra-cvs-20051005/cinelerra/file.h (-1 / +1 lines)
Lines 139-145 Link Here
139
139
140
140
141
// Read frame of video into the argument
141
// Read frame of video into the argument
142
	int File::read_frame(VFrame *frame);
142
	int read_frame(VFrame *frame);
143
143
144
144
145
// The following involve no extra copies.
145
// The following involve no extra copies.
(-)cinelerra-cvs-20051005/cinelerra/virtualconsole.h (-1 / +1 lines)
Lines 28-34 Link Here
28
28
29
// Called during each process buffer operation to reset the status
29
// Called during each process buffer operation to reset the status
30
// of the attachments to unprocessed.
30
// of the attachments to unprocessed.
31
	void VirtualConsole::reset_attachments();
31
	void reset_attachments();
32
	void dump();
32
	void dump();
33
33
34
34
(-)cinelerra-cvs-20051005/cinelerra/zoombar.h (-1 / +1 lines)
Lines 24-30 Link Here
24
	~ZoomBar();
24
	~ZoomBar();
25
25
26
	int create_objects();
26
	int create_objects();
27
	void ZoomBar::resize_event();
27
	void resize_event();
28
	int draw();
28
	int draw();
29
	int resize_event(int w, int h);
29
	int resize_event(int w, int h);
30
	void redraw_time_dependancies();
30
	void redraw_time_dependancies();
(-)cinelerra-cvs-20051005/cinelerra/ffmpeg.h (-2 / +2 lines)
Lines 24-34 Link Here
24
	static int convert_cmodel_transfer(VFrame *frame_in,VFrame *frame_out);
24
	static int convert_cmodel_transfer(VFrame *frame_in,VFrame *frame_out);
25
	static int init_picture_from_frame(AVPicture *picture, VFrame *frame);
25
	static int init_picture_from_frame(AVPicture *picture, VFrame *frame);
26
26
27
	static CodecID FFMPEG::codec_id(char *codec_string);
27
	static CodecID codec_id(char *codec_string);
28
28
29
 private:
29
 private:
30
	static PixelFormat color_model_to_pix_fmt(int color_model);
30
	static PixelFormat color_model_to_pix_fmt(int color_model);
31
	static int FFMPEG::pix_fmt_to_color_model(PixelFormat pix_fmt);
31
	static int pix_fmt_to_color_model(PixelFormat pix_fmt);
32
32
33
	int got_picture;
33
	int got_picture;
34
	Asset *asset;
34
	Asset *asset;
(-)cinelerra-cvs-20051005/cinelerra/pipe.h (-7 / +7 lines)
Lines 11-26 Link Here
11
11
12
class Pipe {
12
class Pipe {
13
 public:
13
 public:
14
	Pipe::Pipe(char *command, char *sub_str = 0, char sub_char = '%');
14
	Pipe(char *command, char *sub_str = 0, char sub_char = '%');
15
 	Pipe::~Pipe() ;		
15
 	~Pipe() ;		
16
	int Pipe::open_read() ;
16
	int open_read() ;
17
	int Pipe::open_write() ;
17
	int open_write() ;
18
	void Pipe::close() ;
18
	void close() ;
19
19
20
	int fd;
20
	int fd;
21
 private:
21
 private:
22
	int Pipe::substitute() ;
22
	int substitute() ;
23
 	int Pipe::open(char *mode) ;
23
 	int open(char *mode) ;
24
	
24
	
25
	char sub_char;
25
	char sub_char;
26
	char *sub_str;
26
	char *sub_str;
(-)cinelerra-cvs-20051005/cinelerra/framecache.h (-1 / +1 lines)
Lines 72-78 Link Here
72
		int64_t position,
72
		int64_t position,
73
		double frame_rate,
73
		double frame_rate,
74
		int *item_return);
74
		int *item_return);
75
	int FrameCache::frame_exists(int64_t position, 
75
	int frame_exists(int64_t position, 
76
		double frame_rate,
76
		double frame_rate,
77
		int color_model,
77
		int color_model,
78
		int w,
78
		int w,
(-)cinelerra-cvs-20051005/cinelerra/renderfarmclient.h (-1 / +1 lines)
Lines 70-76 Link Here
70
70
71
71
72
72
73
	void RenderFarmClientThread::read_preferences(int socket_fd, 
73
	void read_preferences(int socket_fd, 
74
		Preferences *preferences);
74
		Preferences *preferences);
75
	void read_asset(int socket_fd, Asset *asset);
75
	void read_asset(int socket_fd, Asset *asset);
76
	void read_edl(int socket_fd, 
76
	void read_edl(int socket_fd, 
(-)cinelerra-cvs-20051005/plugins/burn/burn.h (-1 / +1 lines)
Lines 75-81 Link Here
75
75
76
76
77
77
78
	void BurnMain::HSItoRGB(double H, 
78
	void HSItoRGB(double H, 
79
		double S, 
79
		double S, 
80
		double I, 
80
		double I, 
81
		int *r, 
81
		int *r, 
(-)cinelerra-cvs-20051005/plugins/polar/polar.h (-1 / +1 lines)
Lines 62-68 Link Here
62
	int wait_process_frame();
62
	int wait_process_frame();
63
	void run();
63
	void run();
64
	void get_pixel(const int &x, const int &y, VPixel *pixel, VPixel **input_rows);
64
	void get_pixel(const int &x, const int &y, VPixel *pixel, VPixel **input_rows);
65
	int PolarEngine::calc_undistorted_coords(int wx,
65
	int calc_undistorted_coords(int wx,
66
			 int wy,
66
			 int wy,
67
			 double &x,
67
			 double &x,
68
			 double &y);
68
			 double &y);
(-)cinelerra-cvs-20051005/cinelerra/vrender.h (-1 / +1 lines)
Lines 48-54 Link Here
48
// Flash the output on the display
48
// Flash the output on the display
49
	int flash_output();
49
	int flash_output();
50
// Determine if data can be copied directly from the file to the output device.
50
// Determine if data can be copied directly from the file to the output device.
51
	void VRender::get_render_strategy(Edit* &playable_edit, 
51
	void get_render_strategy(Edit* &playable_edit, 
52
		int &colormodel, 
52
		int &colormodel, 
53
		int &use_vconsole,
53
		int &use_vconsole,
54
		int64_t position);
54
		int64_t position);

Return to bug 119575