Commit d3dff191 authored by diego's avatar diego

#include required headers directly.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13078 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 56ec96c7
...@@ -18,11 +18,13 @@ ...@@ -18,11 +18,13 @@
* License along with FFmpeg; if not, write to the Free Software * License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "avformat.h"
#include "config.h"
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <stdint.h>
#include <string.h> #include <string.h>
#include <errno.h>
#ifdef HAVE_SOUNDCARD_H #ifdef HAVE_SOUNDCARD_H
#include <soundcard.h> #include <soundcard.h>
#else #else
...@@ -33,6 +35,10 @@ ...@@ -33,6 +35,10 @@
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <sys/time.h> #include <sys/time.h>
#include "log.h"
#include "avcodec.h"
#include "avformat.h"
#define AUDIO_BLOCK_SIZE 4096 #define AUDIO_BLOCK_SIZE 4096
typedef struct { typedef struct {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment