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
c8bec255
Commit
c8bec255
authored
Jan 30, 2015
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavd/libcdio: add more paranoia mode constants
parent
fbccbd68
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
libcdio.c
libavdevice/libcdio.c
+3
-1
No files found.
libavdevice/libcdio.c
View file @
c8bec255
...
...
@@ -165,10 +165,12 @@ static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp,
#define DEC AV_OPT_FLAG_DECODING_PARAM
static
const
AVOption
options
[]
=
{
{
"speed"
,
"set drive reading speed"
,
OFFSET
(
speed
),
AV_OPT_TYPE_INT
,
{
.
i64
=
0
},
0
,
INT_MAX
,
DEC
},
{
"paranoia_mode"
,
"set error recovery mode"
,
OFFSET
(
paranoia_mode
),
AV_OPT_TYPE_FLAGS
,
{
.
i64
=
0
},
INT_MIN
,
INT_MAX
,
DEC
,
"paranoia_mode"
},
{
"paranoia_mode"
,
"set error recovery mode"
,
OFFSET
(
paranoia_mode
),
AV_OPT_TYPE_FLAGS
,
{
.
i64
=
PARANOIA_MODE_DISABLE
},
INT_MIN
,
INT_MAX
,
DEC
,
"paranoia_mode"
},
{
"disable"
,
"apply no fixups"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
PARANOIA_MODE_DISABLE
},
0
,
0
,
DEC
,
"paranoia_mode"
},
{
"verify"
,
"verify data integrity in overlap area"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
PARANOIA_MODE_VERIFY
},
0
,
0
,
DEC
,
"paranoia_mode"
},
{
"overlap"
,
"perform overlapped reads"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
PARANOIA_MODE_OVERLAP
},
0
,
0
,
DEC
,
"paranoia_mode"
},
{
"neverskip"
,
"do not skip failed reads"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
PARANOIA_MODE_NEVERSKIP
},
0
,
0
,
DEC
,
"paranoia_mode"
},
{
"full"
,
"apply all recovery modes"
,
0
,
AV_OPT_TYPE_CONST
,
{
.
i64
=
PARANOIA_MODE_FULL
},
0
,
0
,
DEC
,
"paranoia_mode"
},
{
NULL
},
};
...
...
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