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
644e7acb
Commit
644e7acb
authored
Dec 13, 2008
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename type to be consistent
Originally committed as revision 16090 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
eb857782
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
rtsp.c
libavformat/rtsp.c
+3
-4
No files found.
libavformat/rtsp.c
View file @
644e7acb
...
@@ -283,17 +283,16 @@ static void sdp_parse_fmtp_config(AVCodecContext *codec, char *attr, char *value
...
@@ -283,17 +283,16 @@ static void sdp_parse_fmtp_config(AVCodecContext *codec, char *attr, char *value
return
;
return
;
}
}
typedef
struct
attrname_map
typedef
struct
{
{
const
char
*
str
;
const
char
*
str
;
uint16_t
type
;
uint16_t
type
;
uint32_t
offset
;
uint32_t
offset
;
}
attrname_map_t
;
}
AttrNameMap
;
/* All known fmtp parmeters and the corresping RTPAttrTypeEnum */
/* All known fmtp parmeters and the corresping RTPAttrTypeEnum */
#define ATTR_NAME_TYPE_INT 0
#define ATTR_NAME_TYPE_INT 0
#define ATTR_NAME_TYPE_STR 1
#define ATTR_NAME_TYPE_STR 1
static
const
attrname_map_t
attr_names
[]
=
static
const
AttrNameMap
attr_names
[]
=
{
{
{
"SizeLength"
,
ATTR_NAME_TYPE_INT
,
offsetof
(
rtp_payload_data_t
,
sizelength
)},
{
"SizeLength"
,
ATTR_NAME_TYPE_INT
,
offsetof
(
rtp_payload_data_t
,
sizelength
)},
{
"IndexLength"
,
ATTR_NAME_TYPE_INT
,
offsetof
(
rtp_payload_data_t
,
indexlength
)},
{
"IndexLength"
,
ATTR_NAME_TYPE_INT
,
offsetof
(
rtp_payload_data_t
,
indexlength
)},
...
...
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