Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 124035
Collapse All | Expand All

(-)decoder_plugins/ffmpeg/ffmpeg.c (+3 lines)
Lines 336-341 Link Here
336
		strcpy (buf, "WMA");
336
		strcpy (buf, "WMA");
337
	else if (!strcasecmp(ext, "aac"))
337
	else if (!strcasecmp(ext, "aac"))
338
		strcpy (buf, "AAC");
338
		strcpy (buf, "AAC");
339
	else if (!strcasecmp(ext, "mp4"))
340
		strcpy (buf, "MP4");
339
	else if (!strcasecmp(ext, "m4a"))
341
	else if (!strcasecmp(ext, "m4a"))
340
		strcpy (buf, "M4A");
342
		strcpy (buf, "M4A");
341
}
343
}
Lines 345-350 Link Here
345
	return !strcasecmp(ext, "wma")
347
	return !strcasecmp(ext, "wma")
346
		|| !strcasecmp(ext, "ra")
348
		|| !strcasecmp(ext, "ra")
347
		|| !strcasecmp(ext, "m4a")
349
		|| !strcasecmp(ext, "m4a")
350
		|| !strcasecmp(ext, "mp4")
348
		|| !strcasecmp(ext, "aac");
351
		|| !strcasecmp(ext, "aac");
349
}
352
}
350
353

Return to bug 124035