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/pnmenc.c | |
parent | f3fb528cd5bfecec6835a3951c75903a194ae1ad (diff) | |
download | ffmpeg-6dc79f1d04eb88ec97360c45be4cadc66b7e5780.tar.gz |
avutil/half2float: move non-inline init code out of header
Diffstat (limited to 'libavcodec/pnmenc.c')
-rw-r--r-- | libavcodec/pnmenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pnmenc.c b/libavcodec/pnmenc.c index 38a5d8172d..b052c03b21 100644 --- a/libavcodec/pnmenc.c +++ b/libavcodec/pnmenc.c @@ -294,7 +294,7 @@ static av_cold int phm_enc_init(AVCodecContext *avctx) { PHMEncContext *s = avctx->priv_data; - init_float2half_tables(&s->f2h_tables); + ff_init_float2half_tables(&s->f2h_tables); return 0; } |