Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
ad5ade66
Commit
ad5ade66
authored
Dec 06, 2011
by
Clément Bœsch
Committed by
Clément Bœsch
Dec 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
timecode: add avpriv_timecode_to_string().
parent
98aca4bb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
timecode.c
libavcodec/timecode.c
+16
-0
timecode.h
libavcodec/timecode.h
+11
-0
No files found.
libavcodec/timecode.c
View file @
ad5ade66
...
...
@@ -79,6 +79,22 @@ static int check_timecode_rate(void *avcl, AVRational rate, int drop)
}
}
char
*
avpriv_timecode_to_string
(
char
*
buf
,
const
struct
ff_timecode
*
tc
,
unsigned
frame
)
{
int
frame_num
=
tc
->
start
+
frame
;
int
fps
=
(
tc
->
rate
.
num
+
tc
->
rate
.
den
/
2
)
/
tc
->
rate
.
den
;
int
ff
=
frame_num
%
fps
;
int
ss
=
frame_num
/
fps
%
60
;
int
mm
=
frame_num
/
(
fps
*
60
)
%
60
;
int
hh
=
frame_num
/
(
fps
*
3600
)
%
24
;
if
(
tc
->
drop
)
frame_num
=
ff_framenum_to_drop_timecode
(
frame_num
);
snprintf
(
buf
,
sizeof
(
"hh:mm:ss.ff"
),
"%02d:%02d:%02d%c%02d"
,
hh
,
mm
,
ss
,
tc
->
drop
?
';'
:
':'
,
ff
);
return
buf
;
}
int
ff_init_smtpe_timecode
(
void
*
avcl
,
struct
ff_timecode
*
tc
)
{
int
hh
,
mm
,
ss
,
ff
,
fps
,
ret
;
...
...
libavcodec/timecode.h
View file @
ad5ade66
...
...
@@ -60,6 +60,17 @@ int ff_framenum_to_drop_timecode(int frame_num);
*/
uint32_t
ff_framenum_to_smtpe_timecode
(
unsigned
frame
,
int
fps
,
int
drop
);
/**
* @brief Load timecode string in buf
* @param buf Destination buffer
* @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 buf must have enough space to store the timecode representation
* (sizeof("hh:mm:ss.ff"))
*/
char
*
avpriv_timecode_to_string
(
char
*
buf
,
const
struct
ff_timecode
*
tc
,
unsigned
frame
);
/**
* Parse SMTPE 12M time representation (hh:mm:ss[:;.]ff). str and rate fields
* from tc struct must be set.
...
...
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