blob: 3d6f1cae0b136cb9a7aad9c060ccbcfd48369c4c (
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
60
61
62
63
64
65
|
/*
* h264.h: H.264 bitstream decoding
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: h264.h,v 1.6 2008-07-29 14:01:35 phintuka Exp $
*
*/
#ifndef _XINELIBOUTPUT_H264_H_
#define _XINELIBOUTPUT_H264_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "mpeg.h"
#define NAL_SPS 0x07 /* Sequence Parameter Set */
#define NAL_AUD 0x09 /* Access Unit Delimiter */
#define NAL_END_SEQ 0x10 /* End of Sequence */
#if defined(__i386__) || defined(__x86_64__)
# define IS_NAL_SPS(buf) (*(uint32_t*)(buf) == 0x07010000U)
# define IS_NAL_AUD(buf) (*(uint32_t*)(buf) == 0x09010000U)
# define IS_NAL_END_SEQ(buf) (*(uint32_t*)(buf) == 0x10010000U)
#else
# define IS_NAL_SPS(buf) ((buf)[0] == 0 && (buf)[1] == 0 && (buf)[2] == 1 && (buf)[3] == NAL_SPS)
# define IS_NAL_AUD(buf) ((buf)[0] == 0 && (buf)[1] == 0 && (buf)[2] == 1 && (buf)[3] == NAL_AUD)
# define IS_NAL_END_SEQ(buf) ((buf)[0] == 0 && (buf)[1] == 0 && (buf)[2] == 1 && (buf)[3] == NAL_END_SEQ)
#endif
typedef struct {
int width;
int height;
mpeg_rational_t pixel_aspect;
/* ... */
} h264_sps_data_t;
/*
* input: start of NAL SPS (without 00 00 01 07)
*/
int h264_parse_sps(const uint8_t *buf, int len, h264_sps_data_t *sps);
/*
* input: start of H.264 video data (not PES)
*/
int h264_get_picture_type(const uint8_t *buf, int len);
/*
* input: start of H.264 video data (not PES)
*/
int h264_get_video_size(const uint8_t *buf, int len, video_size_t *size);
#ifdef __cplusplus
} /* extern "C" { */
#endif
#endif /* _XINELIBOUTPUT_H264_H_ */
|