Commit 02243751 authored by Clément Bœsch's avatar Clément Bœsch

lavfi/showspectrum: simplify intensity_color_table declaration.

parent cf8dec7d
...@@ -83,11 +83,9 @@ static const AVOption showspectrum_options[] = { ...@@ -83,11 +83,9 @@ static const AVOption showspectrum_options[] = {
AVFILTER_DEFINE_CLASS(showspectrum); AVFILTER_DEFINE_CLASS(showspectrum);
typedef struct { static const struct {
float a, y, u, v; float a, y, u, v;
} intensity_color_table_item; } intensity_color_table[] = {
static const intensity_color_table_item intensity_color_table[] =
{
{ 0, 0, 0, 0 }, { 0, 0, 0, 0 },
{ 0.13, .03587126228984074, .1573300977624594, -.02548747583751842 }, { 0.13, .03587126228984074, .1573300977624594, -.02548747583751842 },
{ 0.30, .18572281794568020, .1772436246393981, .17475554840414750 }, { 0.30, .18572281794568020, .1772436246393981, .17475554840414750 },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment