diff options
author | Timo Rothenpieler <timo@rothenpieler.org> | 2022-08-10 01:53:10 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2022-08-19 22:09:36 +0200 |
commit | 6dc79f1d04eb88ec97360c45be4cadc66b7e5780 (patch) | |
tree | 1d798db458f52f60adba3356d05308c06763c8c0 /libavcodec/float2half.c | |
parent | f3fb528cd5bfecec6835a3951c75903a194ae1ad (diff) | |
download | ffmpeg-6dc79f1d04eb88ec97360c45be4cadc66b7e5780.tar.gz |
avutil/half2float: move non-inline init code out of header
Diffstat (limited to 'libavcodec/float2half.c')
-rw-r--r-- | libavcodec/float2half.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/libavcodec/float2half.c b/libavcodec/float2half.c new file mode 100644 index 0000000000..90a6f63fac --- /dev/null +++ b/libavcodec/float2half.c @@ -0,0 +1,19 @@ +/* + * This file is part of FFmpeg. + * + * FFmpeg is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * FFmpeg is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with FFmpeg; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "libavutil/float2half.c" |