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
148fbdd1
Commit
148fbdd1
authored
Aug 18, 2013
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv: Refactor mkv_write_packet
Signed-off-by:
Luca Barbato
<
lu_zero@gentoo.org
>
parent
9a27acae
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
10 deletions
+32
-10
matroskaenc.c
libavformat/matroskaenc.c
+32
-10
No files found.
libavformat/matroskaenc.c
View file @
148fbdd1
...
@@ -1264,20 +1264,42 @@ static int mkv_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
...
@@ -1264,20 +1264,42 @@ static int mkv_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
static
int
mkv_write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
static
int
mkv_write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
{
MatroskaMuxContext
*
mkv
=
s
->
priv_data
;
MatroskaMuxContext
*
mkv
=
s
->
priv_data
;
AVIOContext
*
pb
=
s
->
pb
->
seekable
?
s
->
pb
:
mkv
->
dyn_bc
;
int
codec_type
=
s
->
streams
[
pkt
->
stream_index
]
->
codec
->
codec_type
;
AVCodecContext
*
codec
=
s
->
streams
[
pkt
->
stream_index
]
->
codec
;
int
keyframe
=
!!
(
pkt
->
flags
&
AV_PKT_FLAG_KEY
);
int
ret
,
keyframe
=
!!
(
pkt
->
flags
&
AV_PKT_FLAG_KEY
);
int
cluster_size
;
int64_t
ts
=
mkv
->
tracks
[
pkt
->
stream_index
].
write_dts
?
pkt
->
dts
:
pkt
->
pts
;
int
cluster_size_limit
;
int
cluster_size
=
avio_tell
(
pb
)
-
(
s
->
pb
->
seekable
?
mkv
->
cluster_pos
:
0
);
int64_t
cluster_time
;
int64_t
cluster_time_limit
;
AVIOContext
*
pb
;
int
ret
;
if
(
mkv
->
tracks
[
pkt
->
stream_index
].
write_dts
)
cluster_time
=
pkt
->
dts
-
mkv
->
cluster_pts
;
else
cluster_time
=
pkt
->
pts
-
mkv
->
cluster_pts
;
// start a new cluster every 5 MB or 5 sec, or 32k / 1 sec for streaming or
// start a new cluster every 5 MB or 5 sec, or 32k / 1 sec for streaming or
// after 4k and on a keyframe
// after 4k and on a keyframe
if
(
s
->
pb
->
seekable
)
{
pb
=
s
->
pb
;
cluster_size
=
avio_tell
(
pb
)
-
mkv
->
cluster_pos
;
cluster_time_limit
=
5000
;
cluster_size_limit
=
5
*
1024
*
1024
;
}
else
{
pb
=
mkv
->
dyn_bc
;
cluster_size
=
avio_tell
(
pb
);
cluster_time_limit
=
1000
;
cluster_size_limit
=
32
*
1024
;
}
if
(
mkv
->
cluster_pos
&&
if
(
mkv
->
cluster_pos
&&
((
!
s
->
pb
->
seekable
&&
(
cluster_size
>
32
*
1024
||
ts
>
mkv
->
cluster_pts
+
1000
))
(
cluster_size
>
cluster_size_limit
||
||
cluster_size
>
5
*
1024
*
1024
||
ts
>
mkv
->
cluster_pts
+
5000
cluster_time
>
cluster_time_limit
||
||
(
codec
->
codec_type
==
AVMEDIA_TYPE_VIDEO
&&
keyframe
&&
cluster_size
>
4
*
1024
)))
{
(
codec_type
==
AVMEDIA_TYPE_VIDEO
&&
keyframe
&&
cluster_size
>
4
*
1024
)))
{
av_log
(
s
,
AV_LOG_DEBUG
,
"Starting new cluster at offset %"
PRIu64
av_log
(
s
,
AV_LOG_DEBUG
,
"Starting new cluster at offset %"
PRIu64
" bytes, pts %"
PRIu64
"
\n
"
,
avio_tell
(
pb
),
ts
);
" bytes, pts %"
PRIu64
"dts %"
PRIu64
"
\n
"
,
avio_tell
(
pb
),
pkt
->
pts
,
pkt
->
dts
);
end_ebml_master
(
pb
,
mkv
->
cluster
);
end_ebml_master
(
pb
,
mkv
->
cluster
);
mkv
->
cluster_pos
=
0
;
mkv
->
cluster_pos
=
0
;
if
(
mkv
->
dyn_bc
)
if
(
mkv
->
dyn_bc
)
...
@@ -1296,7 +1318,7 @@ static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -1296,7 +1318,7 @@ static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
// buffer an audio packet to ensure the packet containing the video
// buffer an audio packet to ensure the packet containing the video
// keyframe's timecode is contained in the same cluster for WebM
// keyframe's timecode is contained in the same cluster for WebM
if
(
codec
->
codec
_type
==
AVMEDIA_TYPE_AUDIO
)
{
if
(
codec_type
==
AVMEDIA_TYPE_AUDIO
)
{
mkv
->
cur_audio_pkt
=
*
pkt
;
mkv
->
cur_audio_pkt
=
*
pkt
;
if
(
pkt
->
buf
)
{
if
(
pkt
->
buf
)
{
mkv
->
cur_audio_pkt
.
buf
=
av_buffer_ref
(
pkt
->
buf
);
mkv
->
cur_audio_pkt
.
buf
=
av_buffer_ref
(
pkt
->
buf
);
...
...
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