From 717503f7166d7032e32b935f2819d450524125d1 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 26 Oct 2020 13:36:06 +0100 Subject: put_bits: make avpriv_align_put_bits() inline This function is so extremely simple that it is preferable to make it inline rather than deal with all the complications arising from it being an exported symbol. Keep avpriv_align_put_bits() around until the next major bump to preserve ABI compatibility. --- libavcodec/svq1enc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/svq1enc.c') diff --git a/libavcodec/svq1enc.c b/libavcodec/svq1enc.c index 4bf9eb9a0f..9e249aefe4 100644 --- a/libavcodec/svq1enc.c +++ b/libavcodec/svq1enc.c @@ -647,7 +647,7 @@ FF_ENABLE_DEPRECATION_WARNINGS } } - // avpriv_align_put_bits(&s->pb); + // align_put_bits(&s->pb); while (put_bits_count(&s->pb) & 31) put_bits(&s->pb, 1, 0); -- cgit v1.2.3