X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;ds=sidebyside;f=cinelerra-5.1%2Fguicast%2Fbccmodels.h;h=87af95ee22c283de2e49fba53f0377aee528669a;hb=b7f6f61e450ed50974930a07e0337f07c120f29d;hp=57843aa9e063c45e011d72744d930ab4770ad3e9;hpb=7fd85fb66168f6b518c5f2d73e04036e87faa0e1;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/guicast/bccmodels.h b/cinelerra-5.1/guicast/bccmodels.h index 57843aa9..87af95ee 100644 --- a/cinelerra-5.1/guicast/bccmodels.h +++ b/cinelerra-5.1/guicast/bccmodels.h @@ -1,16 +1,16 @@ /* - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published * by the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * This library is distributed in the hope that it will be useful, but + * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * General Public License for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA */ @@ -66,7 +66,7 @@ enum BC_CModel { BC_AYUV16161616 = 35, BC_GREY8 = 36, BC_GREY16 = 37, -//only used for chroma only xfers (transfer with bg_color < 0) +//only used for chroma only xfers (transfer with bg_color = -1) BC_RGBX8888 = 39, BC_RGBX16161616 = 40, BC_YUVX8888 = 41, @@ -81,7 +81,7 @@ enum BC_CModel { #define FOURCC_YUV2 0x32595559 /* YUV2 YUV422 */ #define FOURCC_UYVY 0x59565955 /* UYVY UVY422 */ #define FOURCC_I420 0x30323449 /* I420 Intel Indeo 4 */ - +#define BC_COLOR_ALIGN 64 /* overwrite padding, ssse3 */ #endif // !BC_TRANSPARENCY @@ -134,6 +134,11 @@ public: unsigned char **input_ptrs, int in_colormodel, int in_x, int in_y, int in_w, int in_h, int in_rowspan, int bg_color); +// paint buffer solid color + static int init_color(int color, int alpha, + unsigned char **output_rows, int out_colormodel, + unsigned char *out_yp, unsigned char *out_up, unsigned char *out_vp, + int out_x, int out_y, int out_w, int out_h, int out_rowspan); static int bc_to_x(int color_model); static void bcxfer_stop_slicers();