comparison libmpdemux/demux_lavf.c @ 30589:df6c41f16b40

Add header for AVI print functions; avoids many forward declarations.
author diego
date Thu, 18 Feb 2010 00:18:50 +0000
parents 580319e640b3
children d6f2e0515ad3
comparison
equal deleted inserted replaced
30588:4cc35c457d9e 30589:df6c41f16b40
27 #include "mp_msg.h" 27 #include "mp_msg.h"
28 #include "help_mp.h" 28 #include "help_mp.h"
29 #include "av_opts.h" 29 #include "av_opts.h"
30 30
31 #include "stream/stream.h" 31 #include "stream/stream.h"
32 #include "aviprint.h"
32 #include "demuxer.h" 33 #include "demuxer.h"
33 #include "stheader.h" 34 #include "stheader.h"
34 #include "m_option.h" 35 #include "m_option.h"
35 #include "libvo/sub.h" 36 #include "libvo/sub.h"
36 37
77 int astreams[MAX_A_STREAMS]; 78 int astreams[MAX_A_STREAMS];
78 int vstreams[MAX_V_STREAMS]; 79 int vstreams[MAX_V_STREAMS];
79 int sstreams[MAX_S_STREAMS]; 80 int sstreams[MAX_S_STREAMS];
80 int cur_program; 81 int cur_program;
81 }lavf_priv_t; 82 }lavf_priv_t;
82
83 void print_wave_header(WAVEFORMATEX *h, int verbose_level);
84 void print_video_header(BITMAPINFOHEADER *h, int verbose_level);
85 83
86 static int mp_read(void *opaque, uint8_t *buf, int size) { 84 static int mp_read(void *opaque, uint8_t *buf, int size) {
87 stream_t *stream = opaque; 85 stream_t *stream = opaque;
88 int ret; 86 int ret;
89 87