-
Notifications
You must be signed in to change notification settings - Fork 13
/
h264_sei.c
140 lines (113 loc) · 3.32 KB
/
h264_sei.c
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
* h264bitstream - a library for reading and writing H.264 video
* Copyright (C) 2005-2007 Auroras Entertainment, LLC
* Copyright (C) 2008-2011 Avail-TVN
* Copyright (C) 2012 Alex Izvorski
*
* This file is written by Leslie Wang <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include "bs.h"
#include "h264_stream.h"
#include "h264_sei.h"
#include <stdio.h>
#include <stdlib.h> // malloc
#include <string.h> // memset
sei_t* sei_new()
{
sei_t* s = (sei_t*)calloc(1, sizeof(sei_t));
memset(s, 0, sizeof(sei_t));
s->data = NULL;
return s;
}
void sei_free(sei_t* s)
{
switch( s->payloadType ) {
default:
if ( s->data != NULL ) free(s->data);
}
free(s);
}
void read_sei_end_bits(bs_t* b )
{
// if the message doesn't end at a byte border
if ( !bs_byte_aligned( b ) )
{
if ( !bs_read_u1( b ) ) fprintf(stderr, "WARNING: bit_equal_to_one is 0!!!!\n");
while ( ! bs_byte_aligned( b ) )
{
if ( bs_read_u1( b ) ) fprintf(stderr, "WARNING: bit_equal_to_zero is 1!!!!\n");
}
}
read_rbsp_trailing_bits(b);
}
void read_sei_payload( sei_t* s, bs_t* b );
// D.1 SEI payload syntax
void read_sei_payload( sei_t* s, bs_t* b )
{
int i;
switch( s->payloadType )
{
default:
if( 1 )
{
s->data = (uint8_t*)calloc(1, s->payloadSize);
}
for ( i = 0; i < s->payloadSize; i++ )
s->data[i] = bs_read_u8(b);
}
//if( 1 )
// read_sei_end_bits(h, b);
}
void write_sei_payload( sei_t* s, bs_t* b );
// D.1 SEI payload syntax
void write_sei_payload( sei_t* s, bs_t* b )
{
int i;
switch( s->payloadType )
{
default:
if( 0 )
{
s->data = (uint8_t*)calloc(1, s->payloadSize);
}
for ( i = 0; i < s->payloadSize; i++ )
bs_write_u8(b, s->data[i]);
}
//if( 0 )
// read_sei_end_bits(h, b);
}
void read_debug_sei_payload( sei_t* s, bs_t* b );
// D.1 SEI payload syntax
void read_debug_sei_payload( sei_t* s, bs_t* b )
{
int i;
switch( s->payloadType )
{
default:
if( 1 )
{
s->data = (uint8_t*)calloc(1, s->payloadSize);
}
for ( i = 0; i < s->payloadSize; i++ )
printf("%ld.%d: ", b->p - b->start, b->bits_left); s->data[i] = bs_read_u8(b); printf("s->data[i]: %d \n", s->data[i]);
}
//if( 1 )
// read_sei_end_bits(h, b);
}