Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Icecast-Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
Icecast-Server
Commits
9cf4ed56
Commit
9cf4ed56
authored
9 years ago
by
Joseph Wallace
Browse files
Options
Downloads
Patches
Plain Diff
Probe SimpleBlocks to determine which clusters start with a keyframe.
parent
6e11db5d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/format_ebml.c
+54
-3
54 additions, 3 deletions
src/format_ebml.c
with
54 additions
and
3 deletions
src/format_ebml.c
+
54
−
3
View file @
9cf4ed56
...
...
@@ -61,6 +61,12 @@ typedef enum ebml_chunk_type {
EBML_CHUNK_CLUSTER_CONTINUE
}
ebml_chunk_type
;
typedef
enum
ebml_keyframe_status
{
EBML_KEYFRAME_UNKNOWN
=
-
1
,
EBML_KEYFRAME_DOES_NOT_START_CLUSTER
=
0
,
EBML_KEYFRAME_STARTS_CLUSTER
=
1
}
ebml_keyframe_status
;
typedef
struct
ebml_client_data_st
ebml_client_data_t
;
struct
ebml_client_data_st
{
...
...
@@ -77,6 +83,7 @@ struct ebml_st {
unsigned
long
long
copy_len
;
int
cluster_start
;
ebml_keyframe_status
cluster_starts_with_keyframe
;
int
flush_cluster
;
int
position
;
...
...
@@ -473,7 +480,11 @@ static int ebml_read(ebml_t *ebml, char *buffer, int len, ebml_chunk_type *chunk
if
(
ebml
->
cluster_start
==
0
)
{
/* new cluster is starting now */
*
chunk_type
=
EBML_CHUNK_CLUSTER_START
;
if
(
ebml
->
cluster_starts_with_keyframe
==
EBML_KEYFRAME_STARTS_CLUSTER
)
{
/* Successfully found a keyframe in this cluster's video track */
*
chunk_type
=
EBML_CHUNK_CLUSTER_START
;
}
/* mark end of cluster */
ebml
->
cluster_start
=
-
1
;
...
...
@@ -531,8 +542,11 @@ static int ebml_wrote(ebml_t *ebml, int len)
int
tag_length
;
int
value_length
;
int
track_number_length
;
unsigned
long
long
payload_length
;
unsigned
long
long
data_value
;
unsigned
long
long
track_number
;
unsigned
char
flags
;
int
copy_state
;
char
*
segment_id
=
"
\x18\x53\x80\x67
"
;
...
...
@@ -541,6 +555,7 @@ static int ebml_wrote(ebml_t *ebml, int len)
char
*
track_entry_id
=
"
\xAE
"
;
char
*
track_number_id
=
"
\xD7
"
;
char
*
track_type_id
=
"
\x83
"
;
char
*
simple_block_id
=
"
\xA3
"
;
ebml
->
input_position
+=
len
;
end_of_buffer
=
ebml
->
input_buffer
+
ebml
->
input_position
;
...
...
@@ -585,7 +600,42 @@ static int ebml_wrote(ebml_t *ebml, int len)
}
if
(
tag_length
>
1
)
{
if
(
!
memcmp
(
ebml
->
input_buffer
+
cursor
,
track_entry_id
,
1
))
{
if
(
!
memcmp
(
ebml
->
input_buffer
+
cursor
,
simple_block_id
,
1
))
{
/* Probe SimpleBlock header for the keyframe status */
if
(
ebml
->
cluster_starts_with_keyframe
==
EBML_KEYFRAME_UNKNOWN
)
{
track_number_length
=
ebml_parse_var_int
(
ebml
->
input_buffer
+
cursor
+
tag_length
,
end_of_buffer
,
&
track_number
);
if
(
track_number_length
==
0
)
{
/* Wait for more data */
processing
=
0
;
}
else
if
(
track_number_length
<
0
)
{
return
-
1
;
}
else
if
(
track_number
==
ebml
->
keyframe_track_number
)
{
/* this block belongs to the video track */
/* skip the 16-bit timecode for now, read the flags byte */
if
(
cursor
+
tag_length
+
track_number_length
+
2
>=
ebml
->
input_position
)
{
/* Wait for more data */
processing
=
0
;
}
else
{
flags
=
ebml
->
input_buffer
[
cursor
+
tag_length
+
track_number_length
+
2
];
if
(
flags
&
0x80
)
{
/* "keyframe" flag is set */
ebml
->
cluster_starts_with_keyframe
=
EBML_KEYFRAME_STARTS_CLUSTER
;
/* ICECAST_LOG_DEBUG("Found keyframe in track %hhu", track_number); */
}
else
{
ebml
->
cluster_starts_with_keyframe
=
EBML_KEYFRAME_DOES_NOT_START_CLUSTER
;
/* ICECAST_LOG_DEBUG("Found non-keyframe in track %hhu", track_number); */
}
}
}
}
}
else
if
(
!
memcmp
(
ebml
->
input_buffer
+
cursor
,
track_entry_id
,
1
))
{
/* Parse all TrackEntry children; reset the state */
payload_length
=
0
;
ebml
->
parsing_track_number
=
EBML_UNKNOWN
;
...
...
@@ -668,8 +718,9 @@ static int ebml_wrote(ebml_t *ebml, int len)
/* The header has been fully read by now, publish its size. */
ebml
->
header_size
=
ebml
->
header_position
;
/* Mark this
sync point
*/
/* Mark this
potential sync point, prepare probe
*/
ebml
->
cluster_start
=
ebml
->
position
;
ebml
->
cluster_starts_with_keyframe
=
EBML_KEYFRAME_UNKNOWN
;
/* Buffer data to give us time to probe for keyframes, etc. */
ebml
->
flush_cluster
=
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment