diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-02-14 23:04:15 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-02-14 23:04:20 +0100 |
commit | cf8dec7d642170862675b0821aa6c6fddd8bc9e6 (patch) | |
tree | 2ffa31cd01946a53ec27e0ddd87e8cce50cc5528 | |
parent | ce6a8e5947cabf90720fe0763301e1657252dbec (diff) | |
download | ffmpeg-streaming-cf8dec7d642170862675b0821aa6c6fddd8bc9e6.zip ffmpeg-streaming-cf8dec7d642170862675b0821aa6c6fddd8bc9e6.tar.gz |
lavfi/showspectrum: pretty-align constants.
Binary object unchanged.
-rw-r--r-- | libavfilter/avf_showspectrum.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavfilter/avf_showspectrum.c b/libavfilter/avf_showspectrum.c index 4eb9731..f20a2fd 100644 --- a/libavfilter/avf_showspectrum.c +++ b/libavfilter/avf_showspectrum.c @@ -88,14 +88,14 @@ typedef struct { } intensity_color_table_item; static const intensity_color_table_item intensity_color_table[] = { - { 0, 0, 0, 0 }, - { 0.13, .03587126228984074, .1573300977624594, -.02548747583751842 }, - { 0.3, .1857228179456802, .1772436246393981, .1747555484041475 }, - { 0.6, .2818498058365613, -.1593064119945782, .4713207455460892 }, - { 0.73, .6583062117554781, -.3716070802232764, .2435275933125293 }, - { 0.78, 0.763185357582429, -.4307467689263783, .1686649662231043 }, - { 0.91, .9533636363636364, -.2045454545454546, .03313636363636363 }, - { 1, 1, 0, 0 } + { 0, 0, 0, 0 }, + { 0.13, .03587126228984074, .1573300977624594, -.02548747583751842 }, + { 0.30, .18572281794568020, .1772436246393981, .17475554840414750 }, + { 0.60, .28184980583656130, -.1593064119945782, .47132074554608920 }, + { 0.73, .65830621175547810, -.3716070802232764, .24352759331252930 }, + { 0.78, .76318535758242900, -.4307467689263783, .16866496622310430 }, + { 0.91, .95336363636363640, -.2045454545454546, .03313636363636363 }, + { 1, 1, 0, 0 } }; static av_cold int init(AVFilterContext *ctx, const char *args) |