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
b8df0b71
Commit
b8df0b71
authored
Feb 13, 2015
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtp: h264: Move profile_level_id parsing to a function
parent
d40815a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
25 deletions
+31
-25
rtpdec_h264.c
libavformat/rtpdec_h264.c
+31
-25
No files found.
libavformat/rtpdec_h264.c
View file @
b8df0b71
...
...
@@ -64,6 +64,35 @@ struct PayloadContext {
static
const
uint8_t
start_sequence
[]
=
{
0
,
0
,
0
,
1
};
static
void
parse_profile_level_id
(
AVFormatContext
*
s
,
PayloadContext
*
h264_data
,
char
*
value
)
{
char
buffer
[
3
];
// 6 characters=3 bytes, in hex.
uint8_t
profile_idc
;
uint8_t
profile_iop
;
uint8_t
level_idc
;
buffer
[
0
]
=
value
[
0
];
buffer
[
1
]
=
value
[
1
];
buffer
[
2
]
=
'\0'
;
profile_idc
=
strtol
(
buffer
,
NULL
,
16
);
buffer
[
0
]
=
value
[
2
];
buffer
[
1
]
=
value
[
3
];
profile_iop
=
strtol
(
buffer
,
NULL
,
16
);
buffer
[
0
]
=
value
[
4
];
buffer
[
1
]
=
value
[
5
];
level_idc
=
strtol
(
buffer
,
NULL
,
16
);
av_log
(
s
,
AV_LOG_DEBUG
,
"RTP Profile IDC: %x Profile IOP: %x Level: %x
\n
"
,
profile_idc
,
profile_iop
,
level_idc
);
h264_data
->
profile_idc
=
profile_idc
;
h264_data
->
profile_iop
=
profile_iop
;
h264_data
->
level_idc
=
level_idc
;
}
static
int
sdp_parse_fmtp_config_h264
(
AVFormatContext
*
s
,
AVStream
*
stream
,
PayloadContext
*
h264_data
,
...
...
@@ -87,31 +116,8 @@ static int sdp_parse_fmtp_config_h264(AVFormatContext *s,
av_log
(
s
,
AV_LOG_ERROR
,
"Interleaved RTP mode is not supported yet.
\n
"
);
}
else
if
(
!
strcmp
(
attr
,
"profile-level-id"
))
{
if
(
strlen
(
value
)
==
6
)
{
char
buffer
[
3
];
// 6 characters=3 bytes, in hex.
uint8_t
profile_idc
;
uint8_t
profile_iop
;
uint8_t
level_idc
;
buffer
[
0
]
=
value
[
0
];
buffer
[
1
]
=
value
[
1
];
buffer
[
2
]
=
'\0'
;
profile_idc
=
strtol
(
buffer
,
NULL
,
16
);
buffer
[
0
]
=
value
[
2
];
buffer
[
1
]
=
value
[
3
];
profile_iop
=
strtol
(
buffer
,
NULL
,
16
);
buffer
[
0
]
=
value
[
4
];
buffer
[
1
]
=
value
[
5
];
level_idc
=
strtol
(
buffer
,
NULL
,
16
);
av_log
(
s
,
AV_LOG_DEBUG
,
"RTP Profile IDC: %x Profile IOP: %x Level: %x
\n
"
,
profile_idc
,
profile_iop
,
level_idc
);
h264_data
->
profile_idc
=
profile_idc
;
h264_data
->
profile_iop
=
profile_iop
;
h264_data
->
level_idc
=
level_idc
;
}
if
(
strlen
(
value
)
==
6
)
parse_profile_level_id
(
s
,
h264_data
,
value
);
}
else
if
(
!
strcmp
(
attr
,
"sprop-parameter-sets"
))
{
codec
->
extradata_size
=
0
;
av_freep
(
&
codec
->
extradata
);
...
...
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