X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fdevicev4l2base.C;h=b2f332b967c9bc1a84673679045f33fea66eb2ac;hb=9f917bc27389ebc36568a1f465b42208f7e8e46a;hp=f566e5028e9f5c9149168a50cddc7aceed610bf4;hpb=235c9cc4df8306babbbfda46189108fe262d44ef;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/devicev4l2base.C b/cinelerra-5.1/cinelerra/devicev4l2base.C index f566e502..b2f332b9 100644 --- a/cinelerra-5.1/cinelerra/devicev4l2base.C +++ b/cinelerra-5.1/cinelerra/devicev4l2base.C @@ -381,24 +381,28 @@ int DeviceV4L2Base::v4l2_open(int color_model) best_format = cmodel_to_device(color_model); break; } - printf(_("DeviceV4L2Base::v4l2_open " - " attempting format %4.4s\n"), (char *)&best_format); + printf("DeviceV4L2Base::v4l2_open "); + printf(_(" attempting format %4.4s\n"), + (char *)&best_format); } if(driver == VIDEO4LINUX2JPEG && best_format != V4L2_PIX_FMT_MJPEG) { - printf(_("DeviceV4L2Base::v4l2_open jpeg driver" - " and best_format not mjpeg (%4.4s)\n"), (char *)&best_format); + printf("DeviceV4L2Base::v4l2_open "); + printf(_("jpeg driver and best_format not mjpeg (%4.4s)\n"), + (char *)&best_format); return 1; } if(driver == VIDEO4LINUX2MPEG && best_format != V4L2_PIX_FMT_MPEG) { - printf(_("DeviceV4L2Base::v4l2_open mpeg driver" - " and best_format not mpeg (%4.4s)\n"),(char *)&best_format); + printf("DeviceV4L2Base::v4l2_open "); + printf(_("mpeg driver and best_format not mpeg (%4.4s)\n"), + (char *)&best_format); return 1; } if(config_width != best_width || config_height != best_height) { - printf(_("DeviceV4L2Base::v4l2_open config geom %dx%d != %dx%d best_geom\n"), + printf("DeviceV4L2Base::v4l2_open "); + printf(_("config geom %dx%d != %dx%d best_geom\n"), config_width, config_height, best_width, best_height); }