Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ffmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Luma Media Server
ffmpeg
Commits
3b18857a
Commit
3b18857a
authored
10 years ago
by
Uwe L. Korn
Committed by
Martin Storsjö
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
rtmppkt: Add method to read an AMF string that is not prefixed by its type
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
a1859032
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavformat/rtmppkt.c
+10
-4
10 additions, 4 deletions
libavformat/rtmppkt.c
libavformat/rtmppkt.h
+17
-0
17 additions, 0 deletions
libavformat/rtmppkt.h
with
27 additions
and
4 deletions
libavformat/rtmppkt.c
+
10
−
4
View file @
3b18857a
...
@@ -102,13 +102,11 @@ int ff_amf_read_number(GetByteContext *bc, double *val)
...
@@ -102,13 +102,11 @@ int ff_amf_read_number(GetByteContext *bc, double *val)
return
0
;
return
0
;
}
}
int
ff_amf_
read
_string
(
GetByteContext
*
bc
,
uint8_t
*
str
,
int
ff_amf_
get
_string
(
GetByteContext
*
bc
,
uint8_t
*
str
,
int
strsize
,
int
*
length
)
int
strsize
,
int
*
length
)
{
{
int
stringlen
=
0
;
int
stringlen
=
0
;
int
readsize
;
int
readsize
;
if
(
bytestream2_get_byte
(
bc
)
!=
AMF_DATA_TYPE_STRING
)
return
AVERROR_INVALIDDATA
;
stringlen
=
bytestream2_get_be16
(
bc
);
stringlen
=
bytestream2_get_be16
(
bc
);
if
(
stringlen
+
1
>
strsize
)
if
(
stringlen
+
1
>
strsize
)
return
AVERROR
(
EINVAL
);
return
AVERROR
(
EINVAL
);
...
@@ -122,6 +120,14 @@ int ff_amf_read_string(GetByteContext *bc, uint8_t *str,
...
@@ -122,6 +120,14 @@ int ff_amf_read_string(GetByteContext *bc, uint8_t *str,
return
0
;
return
0
;
}
}
int
ff_amf_read_string
(
GetByteContext
*
bc
,
uint8_t
*
str
,
int
strsize
,
int
*
length
)
{
if
(
bytestream2_get_byte
(
bc
)
!=
AMF_DATA_TYPE_STRING
)
return
AVERROR_INVALIDDATA
;
return
ff_amf_get_string
(
bc
,
str
,
strsize
,
length
);
}
int
ff_amf_read_null
(
GetByteContext
*
bc
)
int
ff_amf_read_null
(
GetByteContext
*
bc
)
{
{
if
(
bytestream2_get_byte
(
bc
)
!=
AMF_DATA_TYPE_NULL
)
if
(
bytestream2_get_byte
(
bc
)
!=
AMF_DATA_TYPE_NULL
)
...
...
This diff is collapsed.
Click to expand it.
libavformat/rtmppkt.h
+
17
−
0
View file @
3b18857a
...
@@ -277,6 +277,23 @@ int ff_amf_read_bool(GetByteContext *gbc, int *val);
...
@@ -277,6 +277,23 @@ int ff_amf_read_bool(GetByteContext *gbc, int *val);
*/
*/
int
ff_amf_read_number
(
GetByteContext
*
gbc
,
double
*
val
);
int
ff_amf_read_number
(
GetByteContext
*
gbc
,
double
*
val
);
/**
* Get AMF string value.
*
* This function behaves the same as ff_amf_read_string except that
* it does not expect the AMF type prepended to the actual data.
* Appends a trailing null byte to output string in order to
* ease later parsing.
*
*@param[in,out] gbc GetByteContext initialized with AMF-formatted data
*@param[out] str read string
*@param[in] strsize buffer size available to store the read string
*@param[out] length read string length
*@return 0 on success or an AVERROR code on failure
*/
int
ff_amf_get_string
(
GetByteContext
*
bc
,
uint8_t
*
str
,
int
strsize
,
int
*
length
);
/**
/**
* Read AMF string value.
* Read AMF string value.
*
*
...
...
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