blob: 0ab207af34a0f452155de4cd649fea31886e3059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*
* mpeg.h: MPEG definitions
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: mpeg.h,v 1.3 2008-06-11 15:50:28 phintuka Exp $
*
*/
#ifndef XINELIBOUTPUT_MPEG_H_
#define XINELIBOUTPUT_MPEG_H_
#ifdef __cplusplus
extern "C" {
#endif
#define SC_PICTURE 0x00 /* picture atart code */
#define SC_SEQUENCE 0xb3 /* sequence header */
/* Picture types */
#define NO_PICTURE 0
#define I_FRAME 1
#define P_FRAME 2
#define B_FRAME 3
typedef struct {
int num;
int den;
} mpeg_rational_t;
typedef struct {
int width;
int height;
mpeg_rational_t pixel_aspect;
} video_size_t;
extern const char * const picture_type_str[];
/*
* input: start of MPEG video data (not PES)
*/
int mpeg2_get_picture_type(const uint8_t *buf, int len);
/*
* input: start of MPEG video data (not PES)
*/
int mpeg2_get_video_size(const uint8_t *buf, int len, video_size_t *size);
#ifdef __cplusplus
} /* extern "C" { */
#endif
#endif
|