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
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
30f06a58
Commit
30f06a58
authored
15 years ago
by
David Conrad
Browse files
Options
Downloads
Patches
Plain Diff
Simplify starting and ending clusters
Originally committed as revision 22199 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
7a2a4840
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/matroskaenc.c
+9
-14
9 additions, 14 deletions
libavformat/matroskaenc.c
tests/ref/acodec/pcm
+2
-2
2 additions, 2 deletions
tests/ref/acodec/pcm
with
11 additions
and
16 deletions
libavformat/matroskaenc.c
+
9
−
14
View file @
30f06a58
...
@@ -725,14 +725,6 @@ static int mkv_write_header(AVFormatContext *s)
...
@@ -725,14 +725,6 @@ static int mkv_write_header(AVFormatContext *s)
ret
=
mkv_write_chapters
(
s
);
ret
=
mkv_write_chapters
(
s
);
if
(
ret
<
0
)
return
ret
;
if
(
ret
<
0
)
return
ret
;
ret
=
mkv_add_seekhead_entry
(
mkv
->
cluster_seekhead
,
MATROSKA_ID_CLUSTER
,
url_ftell
(
pb
));
if
(
ret
<
0
)
return
ret
;
mkv
->
cluster_pos
=
url_ftell
(
pb
);
mkv
->
cluster
=
start_ebml_master
(
pb
,
MATROSKA_ID_CLUSTER
,
0
);
put_ebml_uint
(
pb
,
MATROSKA_ID_CLUSTERTIMECODE
,
0
);
mkv
->
cluster_pts
=
0
;
if
(
url_is_streamed
(
s
->
pb
))
if
(
url_is_streamed
(
s
->
pb
))
mkv_write_seekhead
(
pb
,
mkv
->
main_seekhead
);
mkv_write_seekhead
(
pb
,
mkv
->
main_seekhead
);
...
@@ -849,12 +841,7 @@ static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -849,12 +841,7 @@ static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
int
duration
=
pkt
->
duration
;
int
duration
=
pkt
->
duration
;
int
ret
;
int
ret
;
// start a new cluster every 5 MB or 5 sec
if
(
!
mkv
->
cluster_pos
)
{
if
(
url_ftell
(
pb
)
>
mkv
->
cluster_pos
+
5
*
1024
*
1024
||
pkt
->
pts
>
mkv
->
cluster_pts
+
5000
)
{
av_log
(
s
,
AV_LOG_DEBUG
,
"Starting new cluster at offset %"
PRIu64
" bytes, pts %"
PRIu64
"
\n
"
,
url_ftell
(
pb
),
pkt
->
pts
);
end_ebml_master
(
pb
,
mkv
->
cluster
);
ret
=
mkv_add_seekhead_entry
(
mkv
->
cluster_seekhead
,
MATROSKA_ID_CLUSTER
,
url_ftell
(
pb
));
ret
=
mkv_add_seekhead_entry
(
mkv
->
cluster_seekhead
,
MATROSKA_ID_CLUSTER
,
url_ftell
(
pb
));
if
(
ret
<
0
)
return
ret
;
if
(
ret
<
0
)
return
ret
;
...
@@ -882,6 +869,14 @@ static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -882,6 +869,14 @@ static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
if
(
ret
<
0
)
return
ret
;
if
(
ret
<
0
)
return
ret
;
}
}
// start a new cluster every 5 MB or 5 sec
if
(
url_ftell
(
pb
)
>
mkv
->
cluster_pos
+
5
*
1024
*
1024
||
pkt
->
pts
>
mkv
->
cluster_pts
+
5000
)
{
av_log
(
s
,
AV_LOG_DEBUG
,
"Starting new cluster at offset %"
PRIu64
" bytes, pts %"
PRIu64
"
\n
"
,
url_ftell
(
pb
),
pkt
->
pts
);
end_ebml_master
(
pb
,
mkv
->
cluster
);
mkv
->
cluster_pos
=
0
;
}
mkv
->
duration
=
FFMAX
(
mkv
->
duration
,
pkt
->
pts
+
duration
);
mkv
->
duration
=
FFMAX
(
mkv
->
duration
,
pkt
->
pts
+
duration
);
return
0
;
return
0
;
}
}
...
...
This diff is collapsed.
Click to expand it.
tests/ref/acodec/pcm
+
2
−
2
View file @
30f06a58
...
@@ -22,11 +22,11 @@ stddev: 0.00 PSNR:999.99 bytes: 1058444/ 1058444
...
@@ -22,11 +22,11 @@ stddev: 0.00 PSNR:999.99 bytes: 1058444/ 1058444
1058444 ./tests/data/acodec/pcm_s16le.wav
1058444 ./tests/data/acodec/pcm_s16le.wav
95e54b261530a1bcf6de6fe3b21dc5f6 *./tests/data/pcm.acodec.out.wav
95e54b261530a1bcf6de6fe3b21dc5f6 *./tests/data/pcm.acodec.out.wav
stddev: 0.00 PSNR:999.99 bytes: 1058444/ 1058444
stddev: 0.00 PSNR:999.99 bytes: 1058444/ 1058444
2f3e0884e96b984436b1d01200d68871
*./tests/data/acodec/pcm_s16be.mkv
33c64392615a70aa1132b6f87215b8a9
*./tests/data/acodec/pcm_s16be.mkv
1060705 ./tests/data/acodec/pcm_s16be.mkv
1060705 ./tests/data/acodec/pcm_s16be.mkv
95e54b261530a1bcf6de6fe3b21dc5f6 *./tests/data/pcm.acodec.out.wav
95e54b261530a1bcf6de6fe3b21dc5f6 *./tests/data/pcm.acodec.out.wav
stddev: 0.00 PSNR:999.99 bytes: 1058444/ 1058444
stddev: 0.00 PSNR:999.99 bytes: 1058444/ 1058444
c98158732635effefffa006251b9a6c9
*./tests/data/acodec/pcm_s16le.mkv
ff09423d5ead01dee128b5875682de2a
*./tests/data/acodec/pcm_s16le.mkv
1060705 ./tests/data/acodec/pcm_s16le.mkv
1060705 ./tests/data/acodec/pcm_s16le.mkv
95e54b261530a1bcf6de6fe3b21dc5f6 *./tests/data/pcm.acodec.out.wav
95e54b261530a1bcf6de6fe3b21dc5f6 *./tests/data/pcm.acodec.out.wav
stddev: 0.00 PSNR:999.99 bytes: 1058444/ 1058444
stddev: 0.00 PSNR:999.99 bytes: 1058444/ 1058444
...
...
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