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
d1780e01
Commit
d1780e01
authored
Mar 17, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: don't warn on multiple frames per packet for codecs that expect it
parent
47543450
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
avconv.c
avconv.c
+2
-1
No files found.
avconv.c
View file @
d1780e01
...
@@ -1380,7 +1380,8 @@ static int output_packet(InputStream *ist, const AVPacket *pkt)
...
@@ -1380,7 +1380,8 @@ static int output_packet(InputStream *ist, const AVPacket *pkt)
ist
->
last_dts
=
ist
->
next_dts
;
ist
->
last_dts
=
ist
->
next_dts
;
if
(
avpkt
.
size
&&
avpkt
.
size
!=
pkt
->
size
)
{
if
(
avpkt
.
size
&&
avpkt
.
size
!=
pkt
->
size
&&
!
(
ist
->
dec
->
capabilities
&
CODEC_CAP_SUBFRAMES
))
{
av_log
(
NULL
,
ist
->
showed_multi_packet_warning
?
AV_LOG_VERBOSE
:
AV_LOG_WARNING
,
av_log
(
NULL
,
ist
->
showed_multi_packet_warning
?
AV_LOG_VERBOSE
:
AV_LOG_WARNING
,
"Multiple frames in a packet from stream %d
\n
"
,
pkt
->
stream_index
);
"Multiple frames in a packet from stream %d
\n
"
,
pkt
->
stream_index
);
ist
->
showed_multi_packet_warning
=
1
;
ist
->
showed_multi_packet_warning
=
1
;
...
...
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