X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fguicast%2Ftest2.C;h=fd22fc60d6fb68356e28ab4c0c33fb5e3fb408f2;hb=0a0a29dd9e484b5622b46173d51bb6cefc0a5da4;hp=a8d9a3d9d9964ca71ca96f60824772438f9c176e;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/guicast/test2.C b/cinelerra-5.1/guicast/test2.C index a8d9a3d9..fd22fc60 100644 --- a/cinelerra-5.1/guicast/test2.C +++ b/cinelerra-5.1/guicast/test2.C @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2008 Adam Williams - * + * * 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 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 General Public License for more details. - * + * * 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 - * + * */ #include "guicast.h" @@ -26,10 +26,10 @@ class TestWindow : public BC_Window { public: - TestWindow() : BC_Window("test", + TestWindow() : BC_Window("test", 0, 0, - 640, + 640, 480) { } @@ -60,9 +60,9 @@ static void update_status(status_t *status) gettimeofday(&new_time, 0); if(new_time.tv_sec - status->last_time.tv_sec > 1) { - fprintf(stderr, "%lld frames. %lld frames/sec \r", + fprintf(stderr, "%lld frames. %lld frames/sec \r", status->frames, - (int64_t)status->frames / + (int64_t)status->frames / (int64_t)(new_time.tv_sec - status->start_time.tv_sec)); fflush(stdout); status->last_time = new_time; @@ -80,12 +80,12 @@ int main(int argc, char *argv[]) { TestWindow window; status_t status; - + // int result = window.accel_available(BC_YUV422); // printf("accel_available == %d\n", result); window.start_video(); BC_Bitmap *bitmap1 = window.new_bitmap(640, 480, BC_BGR8888); - + init_status(&status); while(1) {