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
f1db9916
Commit
f1db9916
authored
Jan 04, 2012
by
Clément Bœsch
Committed by
Clément Bœsch
Jan 11, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
timecode: string representation can be negative.
Timecode can be specified with a negative value in MOV...
parent
98aafc5b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
timecode.c
libavcodec/timecode.c
+7
-2
timecode.h
libavcodec/timecode.h
+1
-0
No files found.
libavcodec/timecode.c
View file @
f1db9916
...
...
@@ -83,15 +83,20 @@ char *avpriv_timecode_to_string(char *buf, const struct ff_timecode *tc, unsigne
{
int
frame_num
=
tc
->
start
+
frame
;
int
fps
=
(
tc
->
rate
.
num
+
tc
->
rate
.
den
/
2
)
/
tc
->
rate
.
den
;
int
hh
,
mm
,
ss
,
ff
;
int
hh
,
mm
,
ss
,
ff
,
neg
=
0
;
if
(
tc
->
drop
)
frame_num
=
avpriv_framenum_to_drop_timecode
(
frame_num
);
if
(
frame_num
<
0
)
{
frame_num
=
-
frame_num
;
neg
=
1
;
}
ff
=
frame_num
%
fps
;
ss
=
frame_num
/
fps
%
60
;
mm
=
frame_num
/
(
fps
*
60
)
%
60
;
hh
=
frame_num
/
(
fps
*
3600
)
%
24
;
snprintf
(
buf
,
16
,
"%02d:%02d:%02d%c%02d"
,
snprintf
(
buf
,
16
,
"%s%02d:%02d:%02d%c%02d"
,
neg
?
"-"
:
""
,
hh
,
mm
,
ss
,
tc
->
drop
?
';'
:
':'
,
ff
);
return
buf
;
}
...
...
libavcodec/timecode.h
View file @
f1db9916
...
...
@@ -67,6 +67,7 @@ uint32_t avpriv_framenum_to_smpte_timecode(unsigned frame, int fps, int drop);
* @param tc Timecode struct pointer
* @param frame Frame id (timecode frame is computed with tc->start+frame)
* @return a pointer to the buf parameter
* @note timecode representation can be a negative timecode
* @note buf must have enough space to store the timecode representation: 16
* bytes is the minimum required size.
*/
...
...
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