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
2aa7375a
Commit
2aa7375a
authored
Jan 02, 2012
by
Clément Bœsch
Committed by
Clément Bœsch
Jan 05, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
timecode: add avpriv_check_timecode_rate().
parent
a44b63f6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
timecode.c
libavcodec/timecode.c
+2
-2
timecode.h
libavcodec/timecode.h
+7
-0
version.h
libavcodec/version.h
+1
-1
No files found.
libavcodec/timecode.c
View file @
2aa7375a
...
...
@@ -55,7 +55,7 @@ uint32_t avpriv_framenum_to_smpte_timecode(unsigned frame, int fps, int drop)
(
(
frame
/
(
fps
*
3600
)
%
24
))
%
10
;
// units of hours
}
static
int
check_timecode_rate
(
void
*
avcl
,
AVRational
rate
,
int
drop
)
int
avpriv_
check_timecode_rate
(
void
*
avcl
,
AVRational
rate
,
int
drop
)
{
int
fps
;
...
...
@@ -109,7 +109,7 @@ int avpriv_init_smpte_timecode(void *avcl, struct ff_timecode *tc)
tc
->
drop
=
c
!=
':'
;
// drop if ';', '.', ...
ret
=
check_timecode_rate
(
avcl
,
tc
->
rate
,
tc
->
drop
);
ret
=
avpriv_
check_timecode_rate
(
avcl
,
tc
->
rate
,
tc
->
drop
);
if
(
ret
<
0
)
return
ret
;
...
...
libavcodec/timecode.h
View file @
2aa7375a
...
...
@@ -72,6 +72,13 @@ uint32_t avpriv_framenum_to_smpte_timecode(unsigned frame, int fps, int drop);
*/
char
*
avpriv_timecode_to_string
(
char
*
buf
,
const
struct
ff_timecode
*
tc
,
unsigned
frame
);
/**
* Check if timecode rate is valid and consistent with the drop flag.
*
* @return 0 on success, negative value on failure
*/
int
avpriv_check_timecode_rate
(
void
*
avcl
,
AVRational
rate
,
int
drop
);
/**
* Parse SMTPE 12M time representation (hh:mm:ss[:;.]ff). str and rate fields
* from tc struct must be set.
...
...
libavcodec/version.h
View file @
2aa7375a
...
...
@@ -21,7 +21,7 @@
#define AVCODEC_VERSION_H
#define LIBAVCODEC_VERSION_MAJOR 53
#define LIBAVCODEC_VERSION_MINOR 5
3
#define LIBAVCODEC_VERSION_MINOR 5
4
#define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
...
...
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