erikkaashoek / Comskip

A free commercial detector
GNU General Public License v2.0
598 stars 80 forks source link

Fix for deprecation of DECLARE_ALIGNED #164

Open cqhanson opened 11 months ago

cqhanson commented 11 months ago

Avutil deprecated DECLARE_ALIGNED. To successfully build you can make the the following changes. This works on Mac Ventura 13.5.2, 2018 Mac mini i7.

In comskip.c, edit following lines:

737 static long histogram[256]; 738 static long lastHistogram[256]; ... 10100 static int own_histogram[OWN_HISTOGRAM_WIDTH][OWN_HISTOGRAM_HEIGHT];

In mpeg2dec.c, edit following line:

352 static short audio_buffer[AUDIOBUFFER];