mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi/showspectrum: simplify intensity_color_table declaration.
This commit is contained in:
parent
cf8dec7d64
commit
0224375180
@ -83,11 +83,9 @@ static const AVOption showspectrum_options[] = {
|
||||
|
||||
AVFILTER_DEFINE_CLASS(showspectrum);
|
||||
|
||||
typedef struct {
|
||||
static const struct {
|
||||
float a, y, u, v;
|
||||
} intensity_color_table_item;
|
||||
static const intensity_color_table_item intensity_color_table[] =
|
||||
{
|
||||
} intensity_color_table[] = {
|
||||
{ 0, 0, 0, 0 },
|
||||
{ 0.13, .03587126228984074, .1573300977624594, -.02548747583751842 },
|
||||
{ 0.30, .18572281794568020, .1772436246393981, .17475554840414750 },
|
||||
|
Loading…
Reference in New Issue
Block a user