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

Collapse All | Expand All

(-)avidemux_2.5.4.orig//plugins/ADM_videoEncoder/ADM_vidEnc_x264/x264Options.cpp (-2 / +2 lines)
Lines 1386-1392 Link Here
1386
		case X264_WEIGHTP_NONE:
1386
		case X264_WEIGHTP_NONE:
1387
			strcpy((char*)xmlBuffer, "none");
1387
			strcpy((char*)xmlBuffer, "none");
1388
			break;
1388
			break;
1389
		case X264_WEIGHTP_BLIND:
1389
		case X264_WEIGHTP_SIMPLE:
1390
			strcpy((char*)xmlBuffer, "blind");
1390
			strcpy((char*)xmlBuffer, "blind");
1391
			break;
1391
			break;
1392
		case X264_WEIGHTP_SMART:
1392
		case X264_WEIGHTP_SMART:
Lines 1896-1902 Link Here
1896
				int weightedPredPFrames = X264_WEIGHTP_NONE;
1896
				int weightedPredPFrames = X264_WEIGHTP_NONE;
1897
1897
1898
				if (strcmp(content, "blind") == 0)
1898
				if (strcmp(content, "blind") == 0)
1899
					weightedPredPFrames = X264_WEIGHTP_BLIND;
1899
					weightedPredPFrames = X264_WEIGHTP_SIMPLE;
1900
				else if (strcmp(content, "smart") == 0)
1900
				else if (strcmp(content, "smart") == 0)
1901
					weightedPredPFrames = X264_WEIGHTP_SMART;
1901
					weightedPredPFrames = X264_WEIGHTP_SMART;
1902
1902

Return to bug 356373