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
e40981b8
Commit
e40981b8
authored
Apr 14, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/microdvd: set packet duration.
parent
3e1d3ebf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
microdvddec.c
libavformat/microdvddec.c
+11
-0
No files found.
libavformat/microdvddec.c
View file @
e40981b8
...
@@ -90,6 +90,15 @@ static int64_t get_pts(const char *buf)
...
@@ -90,6 +90,15 @@ static int64_t get_pts(const char *buf)
return
AV_NOPTS_VALUE
;
return
AV_NOPTS_VALUE
;
}
}
static
int
get_duration
(
const
char
*
buf
)
{
int
frame_start
,
frame_end
;
if
(
sscanf
(
buf
,
"{%d}{%d}"
,
&
frame_start
,
&
frame_end
)
==
2
)
return
frame_end
-
frame_start
;
return
0
;
}
static
int
microdvd_read_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
static
int
microdvd_read_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
{
MicroDVDContext
*
microdvd
=
s
->
priv_data
;
MicroDVDContext
*
microdvd
=
s
->
priv_data
;
...
@@ -114,6 +123,8 @@ static int microdvd_read_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -114,6 +123,8 @@ static int microdvd_read_packet(AVFormatContext *s, AVPacket *pkt)
pkt
->
flags
|=
AV_PKT_FLAG_KEY
;
pkt
->
flags
|=
AV_PKT_FLAG_KEY
;
pkt
->
pos
=
pos
;
pkt
->
pos
=
pos
;
pkt
->
pts
=
pkt
->
dts
=
get_pts
(
buffer
);
pkt
->
pts
=
pkt
->
dts
=
get_pts
(
buffer
);
if
(
pkt
->
pts
!=
AV_NOPTS_VALUE
)
// TODO: handle "{}" duration
pkt
->
duration
=
get_duration
(
buffer
);
}
}
return
res
;
return
res
;
}
}
...
...
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