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
76a8b5e7
Commit
76a8b5e7
authored
Aug 27, 2017
by
Marton Balint
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avdevice/decklink_dec: fix signed and unsigned comparison warning
Signed-off-by:
Marton Balint
<
cus@passwd.hu
>
parent
bf39f7ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
decklink_dec.cpp
libavdevice/decklink_dec.cpp
+1
-1
No files found.
libavdevice/decklink_dec.cpp
View file @
76a8b5e7
...
...
@@ -234,7 +234,7 @@ static int avpacket_queue_put(AVPacketQueue *q, AVPacket *pkt)
AVPacketList
*
pkt1
;
// Drop Packet if queue size is > maximum queue size
if
(
avpacket_queue_size
(
q
)
>
q
->
max_q_size
)
{
if
(
avpacket_queue_size
(
q
)
>
(
uint64_t
)
q
->
max_q_size
)
{
av_log
(
q
->
avctx
,
AV_LOG_WARNING
,
"Decklink input buffer overrun!
\n
"
);
return
-
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