Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
fbd54827
Commit
fbd54827
authored
Sep 18, 2013
by
Luca Barbato
Committed by
Michael Niedermayer
Sep 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtmp: Unbreak handle_notify
Commit
5626f994
broke it.
parent
20dfab33
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
13 deletions
+14
-13
rtmpproto.c
libavformat/rtmpproto.c
+14
-13
No files found.
libavformat/rtmpproto.c
View file @
fbd54827
...
@@ -2067,7 +2067,7 @@ static int handle_notify(URLContext *s, RTMPPacket *pkt) {
...
@@ -2067,7 +2067,7 @@ static int handle_notify(URLContext *s, RTMPPacket *pkt) {
GetByteContext
gbc
;
GetByteContext
gbc
;
PutByteContext
pbc
;
PutByteContext
pbc
;
uint32_t
ts
;
uint32_t
ts
;
int
old_flv_size
;
int
old_flv_size
,
err
;
const
uint8_t
*
datatowrite
;
const
uint8_t
*
datatowrite
;
unsigned
datatowritelength
;
unsigned
datatowritelength
;
...
@@ -2095,22 +2095,23 @@ static int handle_notify(URLContext *s, RTMPPacket *pkt) {
...
@@ -2095,22 +2095,23 @@ static int handle_notify(URLContext *s, RTMPPacket *pkt) {
old_flv_size
=
rt
->
flv_size
;
old_flv_size
=
rt
->
flv_size
;
rt
->
flv_size
+=
datatowritelength
+
15
;
rt
->
flv_size
+=
datatowritelength
+
15
;
}
else
{
}
else
{
int
err
;
old_flv_size
=
0
;
old_flv_size
=
0
;
rt
->
flv_size
=
datatowritelength
+
15
;
rt
->
flv_size
=
datatowritelength
+
15
;
rt
->
flv_off
=
0
;
rt
->
flv_off
=
0
;
if
((
err
=
av_reallocp
(
&
rt
->
flv_data
,
rt
->
flv_size
))
<
0
)
return
err
;
bytestream2_init_writer
(
&
pbc
,
rt
->
flv_data
,
rt
->
flv_size
);
bytestream2_skip_p
(
&
pbc
,
old_flv_size
);
bytestream2_put_byte
(
&
pbc
,
pkt
->
type
);
bytestream2_put_be24
(
&
pbc
,
datatowritelength
);
bytestream2_put_be24
(
&
pbc
,
ts
);
bytestream2_put_byte
(
&
pbc
,
ts
>>
24
);
bytestream2_put_be24
(
&
pbc
,
0
);
bytestream2_put_buffer
(
&
pbc
,
datatowrite
,
datatowritelength
);
bytestream2_put_be32
(
&
pbc
,
0
);
}
}
if
((
err
=
av_reallocp
(
&
rt
->
flv_data
,
rt
->
flv_size
))
<
0
)
return
err
;
bytestream2_init_writer
(
&
pbc
,
rt
->
flv_data
,
rt
->
flv_size
);
bytestream2_skip_p
(
&
pbc
,
old_flv_size
);
bytestream2_put_byte
(
&
pbc
,
pkt
->
type
);
bytestream2_put_be24
(
&
pbc
,
datatowritelength
);
bytestream2_put_be24
(
&
pbc
,
ts
);
bytestream2_put_byte
(
&
pbc
,
ts
>>
24
);
bytestream2_put_be24
(
&
pbc
,
0
);
bytestream2_put_buffer
(
&
pbc
,
datatowrite
,
datatowritelength
);
bytestream2_put_be32
(
&
pbc
,
0
);
return
0
;
return
0
;
}
}
...
...
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