FFMS / ffms2

An FFmpeg based source library and Avisynth/VapourSynth plugin for easy frame accurate access
Other
582 stars 105 forks source link

Missing avisynth.h #214

Closed ghost closed 9 years ago

ghost commented 9 years ago

Cannot build trunk due to missing header, avisynth.h

#ifndef FFAVSSOURCES_H
#define FFAVSSOURCES_H

#include <vector>
#include <windows.h>
#include <avisynth.h>
#include "ffms.h"
myrsloik commented 9 years ago

As you can see there are <> around avisynth.h so you have to find it yourself. You can get the latest header avs+ headers from https://github.com/AviSynth/AviSynthPlus/tree/MT/avs_core/include which is the recommended version to use

ghost commented 9 years ago

Got it; an external dependency. Thanks.