mirror of
https://github.com/mpv-player/mpv
synced 2025-01-03 05:22:23 +00:00
#include corresponding .h files in .c files.
This ensures that function declarations in both files always match. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30596 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
3c514ea708
commit
465f535c51
@ -22,6 +22,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "libavcodec/opt.h"
|
||||
#include "av_opts.h"
|
||||
|
||||
int parse_avopts(void *v, char *str){
|
||||
char *start;
|
||||
|
@ -29,6 +29,7 @@
|
||||
#include "stream/stream.h"
|
||||
#include "libmpdemux/muxer.h"
|
||||
#include "help_mp.h"
|
||||
#include "ae_lame.h"
|
||||
#include "ae_pcm.h"
|
||||
#include "libaf/af_format.h"
|
||||
#include "libmpdemux/mp3_hdr.h"
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "mp_msg.h"
|
||||
#include "mp3_hdr.h"
|
||||
|
||||
//----------------------- mp3 audio frame header parser -----------------------
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "osdep/timer.h"
|
||||
#include "input/input.h"
|
||||
#include "input/mouse.h"
|
||||
|
||||
#include "mp_fifo.h"
|
||||
|
||||
int key_fifo_size = 7;
|
||||
static int *key_fifo_data = NULL;
|
||||
|
@ -58,6 +58,7 @@
|
||||
|
||||
#include "mp_fifo.h"
|
||||
#include "keycodes.h"
|
||||
#include "getch2.h"
|
||||
|
||||
#ifdef HAVE_TERMIOS
|
||||
static struct termios tio_orig;
|
||||
|
@ -27,6 +27,8 @@
|
||||
#include <fcntl.h>
|
||||
#include <sys/mman.h>
|
||||
|
||||
#include "mmap_anon.h"
|
||||
|
||||
#if defined(MAP_ANON) && !defined(MAP_ANONYMOUS)
|
||||
#define MAP_ANONYMOUS MAP_ANON
|
||||
#endif
|
||||
|
@ -40,6 +40,7 @@
|
||||
#include <fcntl.h>
|
||||
|
||||
#include "mp_msg.h"
|
||||
#include "shmem.h"
|
||||
|
||||
#ifdef AIX
|
||||
#include <sys/select.h>
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include <time.h>
|
||||
#include <sys/time.h>
|
||||
#include "config.h"
|
||||
#include "timer.h"
|
||||
|
||||
const char *timer_name =
|
||||
#ifdef HAVE_NANOSLEEP
|
||||
|
Loading…
Reference in New Issue
Block a user