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
55d32eed
Commit
55d32eed
authored
Jan 08, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
img2dec: seeking support
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
86159703
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
img2dec.c
libavformat/img2dec.c
+12
-0
No files found.
libavformat/img2dec.c
View file @
55d32eed
...
...
@@ -393,6 +393,7 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
return
AVERROR
(
ENOMEM
);
pkt
->
stream_index
=
0
;
pkt
->
flags
|=
AV_PKT_FLAG_KEY
;
pkt
->
pts
=
s
->
img_number
-
s
->
img_first
;
pkt
->
size
=
0
;
for
(
i
=
0
;
i
<
3
;
i
++
)
{
...
...
@@ -426,6 +427,16 @@ static int img_read_close(struct AVFormatContext* s1)
return
0
;
}
static
int
img_read_seek
(
AVFormatContext
*
s
,
int
stream_index
,
int64_t
timestamp
,
int
flags
)
{
VideoDemuxData
*
s1
=
s
->
priv_data
;
if
(
timestamp
<
0
||
timestamp
>
s1
->
img_last
-
s1
->
img_first
)
return
-
1
;
s1
->
img_number
=
timestamp
+
s1
->
img_first
;
return
0
;
}
#define OFFSET(x) offsetof(VideoDemuxData, x)
#define DEC AV_OPT_FLAG_DECODING_PARAM
static
const
AVOption
options
[]
=
{
...
...
@@ -460,6 +471,7 @@ AVInputFormat ff_image2_demuxer = {
.
read_header
=
img_read_header
,
.
read_packet
=
img_read_packet
,
.
read_close
=
img_read_close
,
.
read_seek
=
img_read_seek
,
.
flags
=
AVFMT_NOFILE
,
.
priv_class
=
&
img2_class
,
};
...
...
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