Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f0a87479
Commit
f0a87479
authored
Feb 13, 2015
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtp: h264: Move STAP-A NAL parsing to a function
parent
a9a0b8d6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
54 deletions
+61
-54
rtpdec_h264.c
libavformat/rtpdec_h264.c
+61
-54
No files found.
libavformat/rtpdec_h264.c
View file @
f0a87479
...
@@ -180,49 +180,13 @@ static int sdp_parse_fmtp_config_h264(AVFormatContext *s,
...
@@ -180,49 +180,13 @@ static int sdp_parse_fmtp_config_h264(AVFormatContext *s,
return
0
;
return
0
;
}
}
// return 0 on packet, no more left, 1 on packet, 1 on partial packet
static
int
h264_handle_packet_stap_a
(
AVFormatContext
*
ctx
,
AVPacket
*
pkt
,
static
int
h264_handle_packet
(
AVFormatContext
*
ctx
,
PayloadContext
*
data
,
const
uint8_t
*
buf
,
int
len
)
AVStream
*
st
,
AVPacket
*
pkt
,
uint32_t
*
timestamp
,
const
uint8_t
*
buf
,
int
len
,
uint16_t
seq
,
int
flags
)
{
{
uint8_t
nal
;
uint8_t
type
;
int
result
=
0
;
if
(
!
len
)
{
av_log
(
ctx
,
AV_LOG_ERROR
,
"Empty H264 RTP packet
\n
"
);
return
AVERROR_INVALIDDATA
;
}
nal
=
buf
[
0
];
type
=
nal
&
0x1f
;
assert
(
data
);
assert
(
buf
);
/* Simplify the case (these are all the nal types used internally by
* the h264 codec). */
if
(
type
>=
1
&&
type
<=
23
)
type
=
1
;
switch
(
type
)
{
case
0
:
// undefined, but pass them through
case
1
:
if
((
result
=
av_new_packet
(
pkt
,
len
+
sizeof
(
start_sequence
)))
<
0
)
return
result
;
memcpy
(
pkt
->
data
,
start_sequence
,
sizeof
(
start_sequence
));
memcpy
(
pkt
->
data
+
sizeof
(
start_sequence
),
buf
,
len
);
COUNT_NAL_TYPE
(
data
,
nal
);
break
;
case
24
:
// STAP-A (one packet, multiple nals)
// consume the STAP-A NAL
buf
++
;
len
--
;
// first we are going to figure out the total size
{
int
pass
=
0
;
int
pass
=
0
;
int
total_length
=
0
;
int
total_length
=
0
;
uint8_t
*
dst
=
NULL
;
uint8_t
*
dst
=
NULL
;
int
ret
;
for
(
pass
=
0
;
pass
<
2
;
pass
++
)
{
for
(
pass
=
0
;
pass
<
2
;
pass
++
)
{
const
uint8_t
*
src
=
buf
;
const
uint8_t
*
src
=
buf
;
...
@@ -265,14 +229,57 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -265,14 +229,57 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
if
(
pass
==
0
)
{
if
(
pass
==
0
)
{
/* now we know the total size of the packet (with the
/* now we know the total size of the packet (with the
* start sequences added) */
* start sequences added) */
if
((
resul
t
=
av_new_packet
(
pkt
,
total_length
))
<
0
)
if
((
re
t
=
av_new_packet
(
pkt
,
total_length
))
<
0
)
return
resul
t
;
return
re
t
;
dst
=
pkt
->
data
;
dst
=
pkt
->
data
;
}
else
{
}
else
{
assert
(
dst
-
pkt
->
data
==
total_length
);
assert
(
dst
-
pkt
->
data
==
total_length
);
}
}
}
}
return
0
;
}
// return 0 on packet, no more left, 1 on packet, 1 on partial packet
static
int
h264_handle_packet
(
AVFormatContext
*
ctx
,
PayloadContext
*
data
,
AVStream
*
st
,
AVPacket
*
pkt
,
uint32_t
*
timestamp
,
const
uint8_t
*
buf
,
int
len
,
uint16_t
seq
,
int
flags
)
{
uint8_t
nal
;
uint8_t
type
;
int
result
=
0
;
if
(
!
len
)
{
av_log
(
ctx
,
AV_LOG_ERROR
,
"Empty H264 RTP packet
\n
"
);
return
AVERROR_INVALIDDATA
;
}
}
nal
=
buf
[
0
];
type
=
nal
&
0x1f
;
assert
(
data
);
assert
(
buf
);
/* Simplify the case (these are all the nal types used internally by
* the h264 codec). */
if
(
type
>=
1
&&
type
<=
23
)
type
=
1
;
switch
(
type
)
{
case
0
:
// undefined, but pass them through
case
1
:
if
((
result
=
av_new_packet
(
pkt
,
len
+
sizeof
(
start_sequence
)))
<
0
)
return
result
;
memcpy
(
pkt
->
data
,
start_sequence
,
sizeof
(
start_sequence
));
memcpy
(
pkt
->
data
+
sizeof
(
start_sequence
),
buf
,
len
);
COUNT_NAL_TYPE
(
data
,
nal
);
break
;
case
24
:
// STAP-A (one packet, multiple nals)
// consume the STAP-A NAL
buf
++
;
len
--
;
// first we are going to figure out the total size
result
=
h264_handle_packet_stap_a
(
ctx
,
pkt
,
buf
,
len
);
break
;
break
;
case
25
:
// STAP-B
case
25
:
// STAP-B
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment