This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
add missing #include "common.h" to libavutil headers
Originally committed as revision 12502 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård
18 years ago
parent
e6e70d9bdc
commit
3540b950ec
5 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
libavutil/adler32.h
+1
-0
libavutil/crc.h
+1
-0
libavutil/des.h
+1
-0
libavutil/integer.h
+1
-0
libavutil/softfloat.h
+ 1
- 0
libavutil/adler32.h
View File
@@ -22,6 +22,7 @@
#define FFMPEG_ADLER32_H
#include <stdint.h>
#include "common.h"
unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf,
unsigned int len) av_pure;
+ 1
- 0
libavutil/crc.h
View File
@@ -23,6 +23,7 @@
#include <stdint.h>
#include <stddef.h>
#include "common.h"
typedef uint32_t AVCRC;
+ 1
- 0
libavutil/des.h
View File
@@ -23,6 +23,7 @@
#define FFMPEG_DES_H
#include <stdint.h>
#include "common.h"
/**
* \brief en- or decrypt an 64-bit block of data with DES
+ 1
- 0
libavutil/integer.h
View File
@@ -29,6 +29,7 @@
#define FFMPEG_INTEGER_H
#include <stdint.h>
#include "common.h"
#define AV_INTEGER_SIZE 8
+ 1
- 0
libavutil/softfloat.h
View File
@@ -22,6 +22,7 @@
#define FFMPEG_SOFTFLOAT_H
#include <stdint.h>
#include "common.h"
#define MIN_EXP -126
#define MAX_EXP 126
Write
Preview
Loading…
Cancel
Save