~ubuntu-branches/ubuntu/wily/x264/wily-proposed

« back to all changes in this revision

Viewing changes to common/osdep.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-19 07:28:39 UTC
  • mfrom: (12.1.11 experimental)
  • Revision ID: package-import@ubuntu.com-20120119072839-0vj6g40ky09d9nru
Tags: 2:0.120.2127+gitf33c8cb-2ubuntu1
* Merge from Debian, remaining changes:
  - build against libgpac-dev to enable .mp4 output

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#define _FILE_OFFSET_BITS 64
32
32
#include <stdio.h>
33
33
#include <sys/stat.h>
 
34
#include <inttypes.h>
34
35
 
35
36
#include "config.h"
36
37
 
37
 
#if HAVE_STDINT_H
38
 
#include <stdint.h>
39
 
#else
40
 
#include <inttypes.h>
41
 
#endif
42
 
 
43
38
#if !HAVE_LOG2F
44
39
#define log2f(x) (logf(x)/0.693147180559945f)
45
40
#define log2(x) (log(x)/0.693147180559945)