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
07585ffa
Commit
07585ffa
authored
Oct 27, 2012
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nutenc: verbosely report unsupported negative pts
Additionally use the correct error number.
parent
f174fbac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
nutenc.c
libavformat/nutenc.c
+6
-2
No files found.
libavformat/nutenc.c
View file @
07585ffa
...
...
@@ -767,8 +767,12 @@ static int nut_write_packet(AVFormatContext *s, AVPacket *pkt)
int
store_sp
=
0
;
int
ret
;
if
(
pkt
->
pts
<
0
)
return
-
1
;
if
(
pkt
->
pts
<
0
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"Negative pts not supported stream %d, pts %"
PRId64
"
\n
"
,
pkt
->
stream_index
,
pkt
->
pts
);
return
AVERROR_INVALIDDATA
;
}
if
(
1LL
<<
(
20
+
3
*
nut
->
header_count
)
<=
avio_tell
(
bc
))
write_headers
(
s
,
bc
);
...
...
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