comparison dv.h @ 2172:92f61ed53965 libavformat

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents a6d6b2b19341
children f6021da48f21
comparison
equal deleted inserted replaced
2171:a6d6b2b19341 2172:92f61ed53965
23 * You should have received a copy of the GNU Lesser General Public 23 * You should have received a copy of the GNU Lesser General Public
24 * License along with FFmpeg; if not, write to the Free Software 24 * License along with FFmpeg; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 */ 26 */
27 27
28 #ifndef AVFORMAT_DV_H
29 #define AVFORMAT_DV_H
30
28 #include "avformat.h" 31 #include "avformat.h"
29 32
30 typedef struct DVDemuxContext DVDemuxContext; 33 typedef struct DVDemuxContext DVDemuxContext;
31 DVDemuxContext* dv_init_demux(AVFormatContext* s); 34 DVDemuxContext* dv_init_demux(AVFormatContext* s);
32 int dv_get_packet(DVDemuxContext*, AVPacket *); 35 int dv_get_packet(DVDemuxContext*, AVPacket *);
35 38
36 typedef struct DVMuxContext DVMuxContext; 39 typedef struct DVMuxContext DVMuxContext;
37 DVMuxContext* dv_init_mux(AVFormatContext* s); 40 DVMuxContext* dv_init_mux(AVFormatContext* s);
38 int dv_assemble_frame(DVMuxContext *c, AVStream*, const uint8_t*, int, uint8_t**); 41 int dv_assemble_frame(DVMuxContext *c, AVStream*, const uint8_t*, int, uint8_t**);
39 void dv_delete_mux(DVMuxContext*); 42 void dv_delete_mux(DVMuxContext*);
43
44 #endif