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
bf0607b6
Commit
bf0607b6
authored
Feb 06, 2016
by
Marton Balint
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/dvenc: use ff_parse_creation_time_metadata
Signed-off-by:
Marton Balint
<
cus@passwd.hu
>
parent
ea1bf08a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
dvenc.c
libavformat/dvenc.c
+1
-3
No files found.
libavformat/dvenc.c
View file @
bf0607b6
...
@@ -302,7 +302,6 @@ static DVMuxContext* dv_init_mux(AVFormatContext* s)
...
@@ -302,7 +302,6 @@ static DVMuxContext* dv_init_mux(AVFormatContext* s)
{
{
DVMuxContext
*
c
=
s
->
priv_data
;
DVMuxContext
*
c
=
s
->
priv_data
;
AVStream
*
vst
=
NULL
;
AVStream
*
vst
=
NULL
;
AVDictionaryEntry
*
t
;
int
i
;
int
i
;
/* we support at most 1 video and 2 audio streams */
/* we support at most 1 video and 2 audio streams */
...
@@ -363,8 +362,7 @@ static DVMuxContext* dv_init_mux(AVFormatContext* s)
...
@@ -363,8 +362,7 @@ static DVMuxContext* dv_init_mux(AVFormatContext* s)
c
->
frames
=
0
;
c
->
frames
=
0
;
c
->
has_audio
=
0
;
c
->
has_audio
=
0
;
c
->
has_video
=
0
;
c
->
has_video
=
0
;
if
(
t
=
av_dict_get
(
s
->
metadata
,
"creation_time"
,
NULL
,
0
))
ff_parse_creation_time_metadata
(
s
,
&
c
->
start_time
,
1
);
c
->
start_time
=
ff_iso8601_to_unix_time
(
t
->
value
);
for
(
i
=
0
;
i
<
c
->
n_ast
;
i
++
)
{
for
(
i
=
0
;
i
<
c
->
n_ast
;
i
++
)
{
if
(
c
->
ast
[
i
]
&&
!
(
c
->
audio_data
[
i
]
=
av_fifo_alloc_array
(
100
,
MAX_AUDIO_FRAME_SIZE
)))
{
if
(
c
->
ast
[
i
]
&&
!
(
c
->
audio_data
[
i
]
=
av_fifo_alloc_array
(
100
,
MAX_AUDIO_FRAME_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