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
71315748
Commit
71315748
authored
Jul 17, 2014
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/segment: do not allow to create segments with no key-frames
Fix trac ticket #3749.
parent
627c044f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
segment.c
libavformat/segment.c
+9
-8
No files found.
libavformat/segment.c
View file @
71315748
...
@@ -94,7 +94,8 @@ typedef struct {
...
@@ -94,7 +94,8 @@ typedef struct {
char
*
frames_str
;
///< segment frame numbers specification string
char
*
frames_str
;
///< segment frame numbers specification string
int
*
frames
;
///< list of frame number specification
int
*
frames
;
///< list of frame number specification
int
nb_frames
;
///< number of elments in the frames array
int
nb_frames
;
///< number of elments in the frames array
int
frame_count
;
int
frame_count
;
///< total number of reference frames
int
segment_frame_count
;
///< number of reference frames in the segment
int64_t
time_delta
;
int64_t
time_delta
;
int
individual_header_trailer
;
/**< Set by a private option. */
int
individual_header_trailer
;
/**< Set by a private option. */
...
@@ -108,8 +109,6 @@ typedef struct {
...
@@ -108,8 +109,6 @@ typedef struct {
SegmentListEntry
cur_entry
;
SegmentListEntry
cur_entry
;
SegmentListEntry
*
segment_list_entries
;
SegmentListEntry
*
segment_list_entries
;
SegmentListEntry
*
segment_list_entries_end
;
SegmentListEntry
*
segment_list_entries_end
;
int
is_first_pkt
;
///< tells if it is the first packet in the segment
}
SegmentContext
;
}
SegmentContext
;
static
void
print_csv_escaped_str
(
AVIOContext
*
ctx
,
const
char
*
str
)
static
void
print_csv_escaped_str
(
AVIOContext
*
ctx
,
const
char
*
str
)
...
@@ -228,7 +227,7 @@ static int segment_start(AVFormatContext *s, int write_header)
...
@@ -228,7 +227,7 @@ static int segment_start(AVFormatContext *s, int write_header)
return
err
;
return
err
;
}
}
seg
->
is_first_pkt
=
1
;
seg
->
segment_frame_count
=
0
;
return
0
;
return
0
;
}
}
...
@@ -647,7 +646,7 @@ static int seg_write_header(AVFormatContext *s)
...
@@ -647,7 +646,7 @@ static int seg_write_header(AVFormatContext *s)
avio_close
(
oc
->
pb
);
avio_close
(
oc
->
pb
);
goto
fail
;
goto
fail
;
}
}
seg
->
is_first_pkt
=
1
;
seg
->
segment_frame_count
=
0
;
if
(
oc
->
avoid_negative_ts
>
0
&&
s
->
avoid_negative_ts
<
0
)
if
(
oc
->
avoid_negative_ts
>
0
&&
s
->
avoid_negative_ts
<
0
)
s
->
avoid_negative_ts
=
1
;
s
->
avoid_negative_ts
=
1
;
...
@@ -715,6 +714,7 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -715,6 +714,7 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
if
(
pkt
->
stream_index
==
seg
->
reference_stream_index
&&
if
(
pkt
->
stream_index
==
seg
->
reference_stream_index
&&
pkt
->
flags
&
AV_PKT_FLAG_KEY
&&
pkt
->
flags
&
AV_PKT_FLAG_KEY
&&
seg
->
segment_frame_count
>
0
&&
(
seg
->
cut_pending
||
seg
->
frame_count
>=
start_frame
||
(
seg
->
cut_pending
||
seg
->
frame_count
>=
start_frame
||
(
pkt
->
pts
!=
AV_NOPTS_VALUE
&&
(
pkt
->
pts
!=
AV_NOPTS_VALUE
&&
av_compare_ts
(
pkt
->
pts
,
st
->
time_base
,
av_compare_ts
(
pkt
->
pts
,
st
->
time_base
,
...
@@ -736,11 +736,10 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -736,11 +736,10 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
FFMAX
(
seg
->
cur_entry
.
end_time
,
(
double
)(
pkt
->
pts
+
pkt
->
duration
)
*
av_q2d
(
st
->
time_base
));
FFMAX
(
seg
->
cur_entry
.
end_time
,
(
double
)(
pkt
->
pts
+
pkt
->
duration
)
*
av_q2d
(
st
->
time_base
));
}
}
if
(
seg
->
is_first_pkt
)
{
if
(
seg
->
segment_frame_count
==
0
)
{
av_log
(
s
,
AV_LOG_VERBOSE
,
"segment:'%s' starts with packet stream:%d pts:%s pts_time:%s frame:%d
\n
"
,
av_log
(
s
,
AV_LOG_VERBOSE
,
"segment:'%s' starts with packet stream:%d pts:%s pts_time:%s frame:%d
\n
"
,
seg
->
avf
->
filename
,
pkt
->
stream_index
,
seg
->
avf
->
filename
,
pkt
->
stream_index
,
av_ts2str
(
pkt
->
pts
),
av_ts2timestr
(
pkt
->
pts
,
&
st
->
time_base
),
seg
->
frame_count
);
av_ts2str
(
pkt
->
pts
),
av_ts2timestr
(
pkt
->
pts
,
&
st
->
time_base
),
seg
->
frame_count
);
seg
->
is_first_pkt
=
0
;
}
}
av_log
(
s
,
AV_LOG_DEBUG
,
"stream:%d start_pts_time:%s pts:%s pts_time:%s dts:%s dts_time:%s"
,
av_log
(
s
,
AV_LOG_DEBUG
,
"stream:%d start_pts_time:%s pts:%s pts_time:%s dts:%s dts_time:%s"
,
...
@@ -764,8 +763,10 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -764,8 +763,10 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
ret
=
ff_write_chained
(
seg
->
avf
,
pkt
->
stream_index
,
pkt
,
s
);
ret
=
ff_write_chained
(
seg
->
avf
,
pkt
->
stream_index
,
pkt
,
s
);
fail:
fail:
if
(
pkt
->
stream_index
==
seg
->
reference_stream_index
)
if
(
pkt
->
stream_index
==
seg
->
reference_stream_index
)
{
seg
->
frame_count
++
;
seg
->
frame_count
++
;
seg
->
segment_frame_count
++
;
}
return
ret
;
return
ret
;
}
}
...
...
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