rework keyframe hide popup, keyframe auto render, textbox set_selection wide text
[goodguy/history.git] / cinelerra-5.1 / guicast / vframe.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2011 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef VFRAME_H
23 #define VFRAME_H
24
25 #include "arraylist.h"
26 #include "bcbitmap.inc"
27 #include "bchash.inc"
28 #include "bcpbuffer.inc"
29 #include "bctexture.inc"
30 #include "bcwindowbase.inc"
31 #include "bccmodels.h"
32 #include "bccmodels.h"
33 #include "vframe.inc"
34
35 // Maximum number of prev or next effects to be pushed onto the stacks.
36 #define MAX_STACK_ELEMENTS 255
37
38
39 // Scene graph for 3D models
40 // Defined by the subclass
41 class VFrameScene
42 {
43 public:
44         VFrameScene();
45         virtual ~VFrameScene();
46 };
47
48
49
50 class VFrame
51 {
52         friend class VFramePng;
53         friend class PngReadFunction;
54 public:
55 // Create new frame with shared data if *data is nonzero.
56 // Pass 0 to *data & -1 to shmid if private data is desired.
57         VFrame(int w,
58                 int h,
59                 int color_model,
60                 long bytes_per_line = -1);
61         VFrame(unsigned char *data,
62                 int shmid,
63                 int w,
64                 int h,
65                 int color_model /* = BC_RGBA8888 */,
66                 long bytes_per_line /* = -1 */);
67         VFrame(unsigned char *data,  // 0
68                 int shmid, // -1
69                 long y_offset,
70                 long u_offset,
71                 long v_offset,
72                 int w,
73                 int h,
74                 int color_model,  /* = BC_RGBA8888 */
75                 long bytes_per_line /* = -1 */);
76         VFrame(BC_Bitmap *bitmap,
77                 int w,
78                 int h,
79                 int color_model,
80                 long bytes_per_line);
81
82         VFrame(VFrame &vframe);
83 // Create new frame for compressed data.
84         VFrame();
85         ~VFrame();
86
87 // Return 1 if the colormodel and dimensions are the same
88 // Used by FrameCache
89         int equivalent(VFrame *src, int test_stacks = 0);
90
91 // Reallocate a frame without deleting the class
92         int reallocate(
93                 unsigned char *data,   // Data if shared
94                 int shmid,             // shmid if IPC  -1 if not
95                 long y_offset,         // plane offsets if shared YUV
96                 long u_offset,
97                 long v_offset,
98                 int w,
99                 int h,
100                 int color_model,
101                 long bytes_per_line);        // -1 if unused
102
103         void set_memory(unsigned char *data,
104                 int shmid,
105                 long y_offset,
106                 long u_offset,
107                 long v_offset);
108         void set_memory(BC_Bitmap *bitmap);
109
110         void set_compressed_memory(unsigned char *data,
111                 int shmid,
112                 int data_size,
113                 int data_allocated);
114
115 // Write a PNG for debugging
116         int write_png(const char *path);
117
118 // if frame points to the same data as this return 1
119         int equals(VFrame *frame);
120 // Test if frame already matches parameters
121         int params_match(int w, int h, int color_model);
122 // Test if data values in the frame match
123         int data_matches(VFrame *frame);
124
125 //      long set_shm_offset(long offset);
126 //      long get_shm_offset();
127         int get_shmid() { return shmid; }
128         void set_use_shm(int value) { use_shm = value; }
129         int get_use_shm() { return use_shm; }
130
131 // direct copy with no alpha
132         int copy_from(VFrame *frame);
133 // BC_CModels::transfer
134         int transfer_from(VFrame *frame, int bg_color=0);
135 // Required for YUV
136         int clear_frame();
137         int allocate_compressed_data(long bytes);
138
139 // Sequence number. -1 means invalid.  Passing frames to the encoder is
140 // asynchronous.  The sequence number must be preserved in the image itself
141 // to encode discontinuous frames.
142         long get_number() { return sequence_number; }
143         void set_number(long number) { sequence_number = number; }
144
145         int get_color_model() { return color_model; }
146 // Get the data pointer
147         unsigned char* get_data() { return data; }
148         long get_compressed_allocated() { return compressed_allocated; }
149         long get_compressed_size() { return compressed_size; }
150         void set_compressed_size(long size) { compressed_size = size; }
151         double get_timestamp() { return timestamp; } 
152         void set_timestamp(double time) { timestamp = time; }
153
154 // return an array of pointers to rows
155         unsigned char** get_rows() { return rows; }
156         int get_memory_usage();
157 // accessors
158         int get_w() { return w; }
159         int get_h() { return h; }
160         int get_w_fixed() { return w - 1; }
161         int get_h_fixed() { return h - 1; }
162         unsigned char *get_y() { return y; }
163         unsigned char *get_u() { return u; }
164         unsigned char *get_v() { return v; }
165 // return rgba planes
166         unsigned char *get_r() { return y; }
167         unsigned char *get_g() { return u; }
168         unsigned char *get_b() { return v; }
169         unsigned char *get_a() { return a; }
170         void set_a(unsigned char *ap) { a = ap; }
171 // return yuv planes
172         static int get_scale_tables(int *column_table, int *row_table,
173                         int in_x1, int in_y1, int in_x2, int in_y2,
174                         int out_x1, int out_y1, int out_x2, int out_y2);
175         int get_bytes_per_pixel() { return bytes_per_pixel; }
176         long get_bytes_per_line();
177         int get_memory_type();
178
179
180
181         static int calculate_bytes_per_pixel(int colormodel);
182 // Get size + 4 for assembly language
183         static long calculate_data_size(int w, int h,
184                 int bytes_per_line = -1, int color_model = BC_RGB888);
185 // Get size of uncompressed frame buffer without extra 4 bytes
186         long get_data_size();
187
188         void rotate270();
189         void rotate90();
190         void flip_vert();
191         void flip_horiz();
192
193 // Convenience storage.
194 // Returns -1 if not set.
195         int get_field2_offset();
196         int set_field2_offset(int value);
197 // Set keyframe status
198         void set_keyframe(int value);
199         int get_keyframe();
200 // Overlay src onto this with blending and translation of input.
201 // Source and this must have alpha
202         void overlay(VFrame *src, int out_x1, int out_y1);
203
204 // If the opengl state is RAM, transfer image from RAM to the texture
205 // referenced by this frame.
206 // If the opengl state is TEXTURE, do nothing.
207 // If the opengl state is SCREEN, switch the current drawable to the pbuffer and
208 // transfer the image to the texture with screen_to_texture.
209 // The opengl state is changed to TEXTURE.
210 // If no textures exist, textures are created.
211 // If the textures already exist, they are reused.
212 // Textures are resized to match the current dimensions.
213 // Must be called from a synchronous opengl thread after enable_opengl.
214         void to_texture();
215
216 // Transfer from PBuffer to RAM.
217 //   used in Playback3D::overlay_sync, plugin Overlay::handle_opengl
218         void screen_to_ram();
219
220 // Transfer contents of current pbuffer to texture,
221 // creating a new texture if necessary.
222 // Coordinates are the coordinates in the drawable to copy.
223         void screen_to_texture(int x = -1, int y = -1, int w = -1, int h = -1);
224
225 // Transfer contents of texture to the current drawable.
226 // Just calls the vertex functions but doesn't initialize.
227 // The coordinates are relative to the VFrame size and flipped to make
228 // the texture upright.
229 // The default coordinates are the size of the VFrame.
230 // flip_y flips the texture in the vertical direction and only used when
231 // writing to the final surface.
232         void draw_texture(float in_x1, float in_y1, float in_x2, float in_y2,
233                 float out_x1, float out_y1, float out_x2, float out_y2,
234                 int flip_y = 0);
235 // Draw the texture using the frame's size as the input and output coordinates.
236         void draw_texture(int flip_y = 0);
237
238
239
240
241
242
243
244
245
246 // ================================ OpenGL functions ===========================
247 // Defined in vframe3d.C
248 // Location of working image if OpenGL playback
249         int get_opengl_state();
250         void set_opengl_state(int value);
251 // OpenGL states
252         enum
253         {
254 // Undefined
255                 UNKNOWN,
256 // OpenGL image is in RAM
257                 RAM,
258 // OpenGL image is in texture
259                 TEXTURE,
260 // OpenGL image is composited in PBuffer or back buffer
261                 SCREEN
262         };
263
264 // Texture ID
265         int get_texture_id();
266         void set_texture_id(int id);
267 // Get window ID the texture is bound to
268         int get_window_id();
269         int get_texture_w();
270         int get_texture_h();
271         int get_texture_components();
272
273
274 // Binds the opengl context to this frame's PBuffer
275         void enable_opengl();
276
277 // Clears the pbuffer with the right values depending on YUV
278         void clear_pbuffer();
279
280 // Get the pbuffer
281         BC_PBuffer* get_pbuffer();
282
283 // Bind the frame's texture to GL_TEXTURE_2D and enable it.
284 // If a texture_unit is supplied, the texture unit is made active
285 // and the commands are run in the right sequence to
286 // initialize it to our preferred specifications.
287         void bind_texture(int texture_unit = -1);
288
289
290
291 // Create a frustum with 0,0 in the upper left and w,-h in the bottom right.
292 // Set preferred opengl settings.
293         static void init_screen(int w, int h);
294 // Calls init_screen with the current frame's dimensions.
295         void init_screen();
296
297 // Compiles and links the shaders into a program.
298 // Adds the program with put_shader.
299 // Returns the program handle.
300 // Requires a null terminated argument list of shaders to link together.
301 // At least one shader argument must have a main() function.  make_shader
302 // replaces all the main() functions with unique functions and calls them in
303 // sequence, so multiple independant shaders can be linked.
304 // x is a placeholder for va_arg and should be 0.
305         static unsigned int make_shader(int x, ...);
306         static void dump_shader(int shader_id);
307
308 // Because OpenGL is faster if multiple effects are combined, we need
309 // to provide ways for effects to aggregate.
310 // The prev_effect is the object providing the data to read_frame.
311 // The next_effect is the object which called read_frame.
312 // Push and pop are only called from Cinelerra internals, so
313 // if an object calls read_frame with a temporary, the stack before and after
314 // the temporary is lost.
315         void push_prev_effect(const char *name);
316         void pop_prev_effect();
317         void push_next_effect(const char *name);
318         void pop_next_effect();
319 // These are called by plugins to determine aggregation.
320 // They access any member of the stack based on the number argument.
321 // next effect 0 is the one that called read_frame most recently.
322 // prev effect 0 is the one that filled our call to read_frame.
323         const char* get_next_effect(int number = 0);
324         const char* get_prev_effect(int number = 0);
325
326 // It isn't enough to know the name of the neighboring effects.
327 // Relevant configuration parameters must be passed on.
328         BC_Hash* get_params();
329
330 // get/set read status  -1/err, 0/noxfer, 1/ok
331         int get_status() { return status; }
332         void set_status(int v) { status = v; }
333
334 // Compare stacks and params from 2 images and return 1 if equal.
335         int equal_stacks(VFrame *src);
336
337 // Copy stacks and params from another frame
338 // Replaces the stacks with the src stacks but only updates the params.
339         void copy_stacks(VFrame *src);
340 // Updates the params with values from src
341         void copy_params(VFrame *src);
342
343 // This clears the stacks and the param table
344         void clear_stacks();
345
346         void draw_rect(int x1, int y1, int x2, int y2);
347         void draw_line(int x1, int y1, int x2, int y2);
348         void draw_pixel(int x, int y);
349         void draw_arrow(int x1, int y1, int x2, int y2);
350
351 // 3D scene graphs
352 // Not integrated with shmem because that only affects codecs
353         VFrameScene* get_scene();
354
355 // Debugging
356         void dump_stacks();
357         void dump();
358
359         void dump_params();
360
361 private:
362
363 // 3D scene graphs
364 // Not integrated with shmem because that only affects codecs
365         VFrameScene *scene;
366
367 // Create a PBuffer matching this frame's dimensions and to be
368 // referenced by this frame.  Does nothing if the pbuffer already exists.
369 // If the frame is resized, the PBuffer is deleted.
370 // Called by enable_opengl.
371 // This allows PBuffers, textures, and bitmaps to travel through the entire
372 // rendering chain without requiring the user to manage a lot of objects.
373 // Must be called from a synchronous opengl thread after enable_opengl.
374         void create_pbuffer();
375
376         int clear_objects(int do_opengl);
377         int reset_parameters(int do_opengl);
378         void create_row_pointers();
379         int allocate_data(unsigned char *data,
380                 int shmid,
381                 long y_offset,
382                 long u_offset,
383                 long v_offset,
384                 int w,
385                 int h,
386                 int color_model,
387                 long bytes_per_line);
388
389 // Convenience storage
390         int field2_offset;
391         int memory_type;
392         enum
393         {
394                 PRIVATE,
395                 SHARED,
396                 SHMGET
397         };
398
399 // Data pointer is pointing to someone else's buffer.
400 //      long shm_offset;
401 // ID of shared memory if using IPC.
402 // The 1st 1 after reboot is 0.
403         int shmid;
404 // Local setting for shm usage
405         int use_shm;
406 // If not set by user, is calculated from color_model
407         long bytes_per_line;
408         int bytes_per_pixel;
409 // Image data
410         unsigned char *data;
411 // Pointers to the start of each row
412         unsigned char **rows;
413 // One of the #defines
414         int color_model;
415 // Allocated space for compressed data
416         long compressed_allocated;
417 // Size of stored compressed image
418         long compressed_size;
419 // Pointers to yuv / rgb planes
420         unsigned char *y, *u, *v;
421         long y_offset;
422         long u_offset;
423         long v_offset;
424 // Pointer to alpha plane
425         unsigned char *a;
426 // Dimensions of frame
427         int w, h;
428 // Info for reading png images
429         const unsigned char *image;
430         long image_offset;
431         long image_size;
432 // For writing discontinuous frames in background rendering
433         long sequence_number;
434         double timestamp;
435 // read status of input frame -1/err, 0/noxfr, 1/ok
436         int status;
437 // OpenGL support
438         int is_keyframe;
439 // State of the current texture
440         BC_Texture *texture;
441 // State of the current PBuffer
442         BC_PBuffer *pbuffer;
443
444 // Location of working image if OpenGL playback
445         int opengl_state;
446
447         ArrayList<char*> prev_effects;
448         ArrayList<char*> next_effects;
449         BC_Hash *params;
450 };
451
452 // Create a frame with the png image
453 class VFramePng : public VFrame {
454 // Read a PNG into the frame with alpha
455         int read_png(const unsigned char *data, long image_size, double xscale, double yscale);
456 public:
457         VFramePng(unsigned char *png_data, double scale=0);
458         VFramePng(unsigned char *png_data, long image_size, double xs=0, double ys=0);
459         ~VFramePng();
460 };
461
462 #endif