Commit 2d5fd788 authored by Diego Biurrun's avatar Diego Biurrun

bgmc: Do not mark ff_bgmc_decode_init() as av_cold

The function is possibly called once per block.
parent bd8ac882
...@@ -485,7 +485,7 @@ av_cold void ff_bgmc_end(uint8_t **cf_lut, int **cf_lut_status) ...@@ -485,7 +485,7 @@ av_cold void ff_bgmc_end(uint8_t **cf_lut, int **cf_lut_status)
/** Initialize decoding and reads the first value */ /** Initialize decoding and reads the first value */
av_cold void ff_bgmc_decode_init(GetBitContext *gb, unsigned int *h, void ff_bgmc_decode_init(GetBitContext *gb, unsigned int *h,
unsigned int *l, unsigned int *v) unsigned int *l, unsigned int *v)
{ {
*h = TOP_VALUE; *h = TOP_VALUE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment