···11-Copyright (c) 2003-2010 Mark Borgerding
11+Copyright (c) 2003-2010 Mark Borgerding . All rights reserved.
2233-All rights reserved.
33+KISS FFT is provided under:
4455-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
55+ SPDX-License-Identifier: BSD-3-Clause
6677- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
88- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
99- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
77+Being under the terms of the BSD 3-clause "New" or "Revised" License,
88+according with:
99+1010+ LICENSES/BSD-3-Clause
10111111-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+35
LICENSES/BSD-3-Clause
···11+Valid-License-Identifier: BSD-3-Clause
22+SPDX-URL: https://spdx.org/licenses/BSD-3-Clause.html
33+Usage-Guide:
44+ To use the BSD 3-clause "New" or "Revised" License put the following SPDX
55+ tag/value pair into a comment according to the placement guidelines in
66+ the licensing rules documentation:
77+ SPDX-License-Identifier: BSD-3-Clause
88+License-Text:
99+1010+Copyright (c) <year> <owner> . All rights reserved.
1111+1212+Redistribution and use in source and binary forms, with or without modification,
1313+are permitted provided that the following conditions are met:
1414+1515+1. Redistributions of source code must retain the above copyright notice,
1616+this list of conditions and the following disclaimer.
1717+1818+2. Redistributions in binary form must reproduce the above copyright notice,
1919+this list of conditions and the following disclaimer in the documentation
2020+and/or other materials provided with the distribution.
2121+2222+3. Neither the name of the copyright holder nor the names of its contributors
2323+may be used to endorse or promote products derived from this software without
2424+specific prior written permission.
2525+2626+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2727+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2828+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2929+ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
3030+LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3131+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
3232+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
3333+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
3434+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
3535+USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+6-12
_kiss_fft_guts.h
···11/*
22-Copyright (c) 2003-2010, Mark Borgerding
33-44-All rights reserved.
55-66-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
77-88- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
99- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1010- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1111-1212-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1313-*/
22+ * Copyright (c) 2003-2010, Mark Borgerding. All rights reserved.
33+ * This file is part of KISS FFT - https://github.com/mborgerding/kissfft
44+ *
55+ * SPDX-License-Identifier: BSD-3-Clause
66+ * See COPYING file for more information.
77+ */
148159/* kiss_fft.h
1610 defines kiss_fft_scalar as either short or a float type
+6-12
kiss_fft.c
···11/*
22-Copyright (c) 2003-2010, Mark Borgerding
33-44-All rights reserved.
55-66-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
77-88- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
99- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1010- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1111-1212-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1313-*/
22+ * Copyright (c) 2003-2010, Mark Borgerding. All rights reserved.
33+ * This file is part of KISS FFT - https://github.com/mborgerding/kissfft
44+ *
55+ * SPDX-License-Identifier: BSD-3-Clause
66+ * See COPYING file for more information.
77+ */
1481591610#include "_kiss_fft_guts.h"
+6-12
tools/fftutil.c
···11/*
22-Copyright (c) 2003-2004, Mark Borgerding
33-44-All rights reserved.
55-66-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
77-88- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
99- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1010- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1111-1212-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1313-*/
22+ * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved.
33+ * This file is part of KISS FFT - https://github.com/mborgerding/kissfft
44+ *
55+ * SPDX-License-Identifier: BSD-3-Clause
66+ * See COPYING file for more information.
77+ */
148159#include <stdlib.h>
1610#include <math.h>
+7-14
tools/kfc.c
···11-#include "kfc.h"
22-31/*
44-Copyright (c) 2003-2004, Mark Borgerding
22+ * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved.
33+ * This file is part of KISS FFT - https://github.com/mborgerding/kissfft
44+ *
55+ * SPDX-License-Identifier: BSD-3-Clause
66+ * See COPYING file for more information.
77+ */
5866-All rights reserved.
77-88-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
99-1010- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1111- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1212- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1313-1414-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1515-*/
1616-99+#include "kfc.h"
17101811typedef struct cached_fft *kfc_cfg;
1912
+6-12
tools/kiss_fastfir.c
···11/*
22-Copyright (c) 2003-2004, Mark Borgerding
33-44-All rights reserved.
55-66-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
77-88- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
99- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1010- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1111-1212-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1313-*/
22+ * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved.
33+ * This file is part of KISS FFT - https://github.com/mborgerding/kissfft
44+ *
55+ * SPDX-License-Identifier: BSD-3-Clause
66+ * See COPYING file for more information.
77+ */
148159#include "_kiss_fft_guts.h"
1610
+6-14
tools/kiss_fftnd.c
···11-22-31/*
44-Copyright (c) 2003-2004, Mark Borgerding
55-66-All rights reserved.
77-88-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
99-1010- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1111- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1212- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1313-1414-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1515-*/
22+ * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved.
33+ * This file is part of KISS FFT - https://github.com/mborgerding/kissfft
44+ *
55+ * SPDX-License-Identifier: BSD-3-Clause
66+ * See COPYING file for more information.
77+ */
168179#include "kiss_fftnd.h"
1810#include "_kiss_fft_guts.h"
+6-12
tools/kiss_fftndr.c
···11/*
22-Copyright (c) 2003-2004, Mark Borgerding
33-44-All rights reserved.
55-66-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
77-88- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
99- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1010- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1111-1212-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1313-*/
22+ * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved.
33+ * This file is part of KISS FFT - https://github.com/mborgerding/kissfft
44+ *
55+ * SPDX-License-Identifier: BSD-3-Clause
66+ * See COPYING file for more information.
77+ */
148159#include "kiss_fftndr.h"
1610#include "_kiss_fft_guts.h"
+6-12
tools/kiss_fftr.c
···11/*
22-Copyright (c) 2003-2004, Mark Borgerding
33-44-All rights reserved.
55-66-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
77-88- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
99- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1010- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1111-1212-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1313-*/
22+ * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved.
33+ * This file is part of KISS FFT - https://github.com/mborgerding/kissfft
44+ *
55+ * SPDX-License-Identifier: BSD-3-Clause
66+ * See COPYING file for more information.
77+ */
148159#include "kiss_fftr.h"
1610#include "_kiss_fft_guts.h"
+6-12
tools/psdpng.c
···11/*
22-Copyright (c) 2003-2004, Mark Borgerding
33-44-All rights reserved.
55-66-Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
77-88- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
99- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1010- * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1111-1212-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1313-*/
22+ * Copyright (c) 2003-2004, Mark Borgerding. All rights reserved.
33+ * This file is part of KISS FFT - https://github.com/mborgerding/kissfft
44+ *
55+ * SPDX-License-Identifier: BSD-3-Clause
66+ * See COPYING file for more information.
77+ */
148159#include <stdlib.h>
1610#include <math.h>