blob: b28c32da10d621d1eeaa1edc2e7c64423e59f527 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Simple program to grab images from VDR Recording
*
* Copyright(c) 2010 Andreas Brachold
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*/
#ifndef __MPEGDEC_H__
#define __MPEGDEC_H__
void demux_reset(void);
int demuxPES (unsigned char * buf, unsigned char * end, const char* szFileName, int flags);
int demuxTS(unsigned char * buffer, unsigned char * end, const char* szFileName, int flags=0 );
#endif
|