Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
fd354b2e
Commit
fd354b2e
authored
Feb 02, 2015
by
Adrian Grange
Committed by
Gerrit Code Review
Feb 02, 2015
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Abort if firstpass file does not exist"
parents
80e729f6
f92c0b16
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
vpxstats.c
vpxstats.c
+3
-0
No files found.
vpxstats.c
View file @
fd354b2e
...
...
@@ -41,6 +41,9 @@ int stats_open_file(stats_io_t *stats, const char *fpf, int pass) {
stats
->
file
=
fopen
(
fpf
,
"rb"
);
if
(
stats
->
file
==
NULL
)
fatal
(
"First-pass stats file does not exist!"
);
if
(
fseek
(
stats
->
file
,
0
,
SEEK_END
))
fatal
(
"First-pass stats file must be seekable!"
);
...
...
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