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
371df9ba
Commit
371df9ba
authored
May 04, 2016
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
flvenc: Provide output bytestream markers
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
db7968bf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
flvenc.c
libavformat/flvenc.c
+4
-0
No files found.
libavformat/flvenc.c
View file @
371df9ba
...
...
@@ -21,6 +21,7 @@
#include "libavutil/dict.h"
#include "libavutil/intfloat.h"
#include "libavutil/mathematics.h"
#include "avc.h"
#include "avformat.h"
#include "flv.h"
...
...
@@ -482,6 +483,9 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt)
s
->
event_flags
&=
~
AVSTREAM_EVENT_FLAG_METADATA_UPDATED
;
}
avio_write_marker
(
pb
,
av_rescale
(
ts
,
AV_TIME_BASE
,
1000
),
pkt
->
flags
&
AV_PKT_FLAG_KEY
&&
(
flv
->
video_par
?
par
->
codec_type
==
AVMEDIA_TYPE_VIDEO
:
1
)
?
AVIO_DATA_MARKER_SYNC_POINT
:
AVIO_DATA_MARKER_BOUNDARY_POINT
);
switch
(
par
->
codec_type
)
{
case
AVMEDIA_TYPE_VIDEO
:
avio_w8
(
pb
,
FLV_TAG_TYPE_VIDEO
);
...
...
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