2015. 7. 30. 13:24


libavutil/common.h:165: error:'UINT64_C' was not declared in this scope


위와 같은 에러를 만나면 common.h 소스에 아래 코드 추가


#ifndef INT64_C

#define INT64_C(c) (c ## LL)

#define UINT64_C(c) (c ## ULL)

#endif