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
108db375
Commit
108db375
authored
Dec 06, 2016
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests/api/api-seek-test: Fix use of uinitialized value
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
9c1ccee7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
api-seek-test.c
tests/api/api-seek-test.c
+1
-1
No files found.
tests/api/api-seek-test.c
View file @
108db375
...
...
@@ -129,7 +129,7 @@ static int compute_crc_of_packets(AVFormatContext *fmt_ctx, int video_stream,
av_log
(
NULL
,
AV_LOG_ERROR
,
"Can't copy image to buffer
\n
"
);
return
number_of_written_bytes
;
}
if
((
fr
->
pts
>
ts_end
)
&&
(
!
no_seeking
))
if
((
!
no_seeking
)
&&
(
fr
->
pts
>
ts_end
))
break
;
crc
=
av_adler32_update
(
0
,
(
const
uint8_t
*
)
byte_buffer
,
number_of_written_bytes
);
printf
(
"%10"
PRId64
", 0x%08lx
\n
"
,
fr
->
pts
,
crc
);
...
...
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