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
85ad1b0e
Commit
85ad1b0e
authored
Mar 30, 2007
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change -fs option to use OPT_INT64
Originally committed as revision 8555 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ffdf9a1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ffmpeg.c
ffmpeg.c
+2
-2
No files found.
ffmpeg.c
View file @
85ad1b0e
...
...
@@ -196,7 +196,7 @@ static int64_t extra_size = 0;
static
int
nb_frames_dup
=
0
;
static
int
nb_frames_drop
=
0
;
static
int
input_sync
;
static
in
t
limit_filesize
=
0
;
//
static
uint64_
t
limit_filesize
=
0
;
//
static
int
pgmyuv_compatibility_hack
=
0
;
static
int
dts_delta_threshold
=
10
;
...
...
@@ -3544,7 +3544,7 @@ const OptionDef options[] = {
{
"map"
,
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
opt_map
},
"set input stream mapping"
,
"file:stream[:syncfile:syncstream]"
},
{
"map_meta_data"
,
HAS_ARG
|
OPT_EXPERT
,
{(
void
*
)
opt_map_meta_data
},
"set meta data information of outfile from infile"
,
"outfile:infile"
},
{
"t"
,
HAS_ARG
,
{(
void
*
)
opt_recording_time
},
"set the recording time"
,
"duration"
},
{
"fs"
,
HAS_ARG
|
OPT_INT
,
{(
void
*
)
&
limit_filesize
},
"set the limit file size"
,
"limit_size"
},
//
{
"fs"
,
HAS_ARG
|
OPT_INT
64
,
{(
void
*
)
&
limit_filesize
},
"set the limit file size"
,
"limit_size"
},
//
{
"ss"
,
HAS_ARG
,
{(
void
*
)
opt_start_time
},
"set the start time offset"
,
"time_off"
},
{
"itsoffset"
,
HAS_ARG
,
{(
void
*
)
opt_input_ts_offset
},
"set the input ts offset"
,
"time_off"
},
{
"title"
,
HAS_ARG
|
OPT_STRING
,
{(
void
*
)
&
str_title
},
"set the title"
,
"string"
},
...
...
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