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
35bdaf3d
Commit
35bdaf3d
authored
Jun 10, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
utils: Drop pointless '#if 1' preprocessor directive.
parent
38c304ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
utils.c
libavformat/utils.c
+0
-2
No files found.
libavformat/utils.c
View file @
35bdaf3d
...
...
@@ -1577,14 +1577,12 @@ int64_t av_gen_search(AVFormatContext *s, int stream_index, int64_t target_ts, i
pos
=
(
flags
&
AVSEEK_FLAG_BACKWARD
)
?
pos_min
:
pos_max
;
ts
=
(
flags
&
AVSEEK_FLAG_BACKWARD
)
?
ts_min
:
ts_max
;
#if 1
pos_min
=
pos
;
ts_min
=
read_timestamp
(
s
,
stream_index
,
&
pos_min
,
INT64_MAX
);
pos_min
++
;
ts_max
=
read_timestamp
(
s
,
stream_index
,
&
pos_min
,
INT64_MAX
);
av_dlog
(
s
,
"pos=0x%"
PRIx64
" %"
PRId64
"<=%"
PRId64
"<=%"
PRId64
"
\n
"
,
pos
,
ts_min
,
target_ts
,
ts_max
);
#endif
*
ts_ret
=
ts
;
return
pos
;
}
...
...
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