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
7768f6b1
Commit
7768f6b1
authored
Sep 12, 2011
by
Joakim Plate
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add support for generic seeking by reading timestamps in nuv
parent
46f415b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
76 additions
and
0 deletions
+76
-0
nuv.c
libavformat/nuv.c
+76
-0
No files found.
libavformat/nuv.c
View file @
7768f6b1
...
...
@@ -258,6 +258,81 @@ static int nuv_packet(AVFormatContext *s, AVPacket *pkt) {
return
AVERROR
(
EIO
);
}
/**
* \brief looks for the string RTjjjjjjjjjj in the stream too resync reading
* \return 1 if the syncword is found 0 otherwise.
*/
static
int
nuv_resync
(
AVFormatContext
*
s
,
int64_t
pos_limit
)
{
AVIOContext
*
pb
=
s
->
pb
;
uint32_t
tag
=
0
;
while
(
!
url_feof
(
pb
)
&&
avio_tell
(
pb
)
<
pos_limit
)
{
tag
=
(
tag
<<
8
)
|
avio_r8
(
pb
);
if
(
tag
==
MKBETAG
(
'R'
,
'T'
,
'j'
,
'j'
)
&&
(
tag
=
avio_rb32
(
pb
))
==
MKBETAG
(
'j'
,
'j'
,
'j'
,
'j'
)
&&
(
tag
=
avio_rb32
(
pb
))
==
MKBETAG
(
'j'
,
'j'
,
'j'
,
'j'
))
return
1
;
}
return
0
;
}
/**
* \brief attempts to read a timestamp from stream at the given stream position
* \return timestamp if successfull and AV_NOPTS_VALUE if failure
*/
static
int64_t
nuv_read_dts
(
AVFormatContext
*
s
,
int
stream_index
,
int64_t
*
ppos
,
int64_t
pos_limit
)
{
NUVContext
*
ctx
=
s
->
priv_data
;
AVIOContext
*
pb
=
s
->
pb
;
uint8_t
hdr
[
HDRSIZE
];
nuv_frametype
frametype
;
int
size
,
key
,
idx
;
int64_t
pos
,
dts
;
if
(
avio_seek
(
pb
,
*
ppos
,
SEEK_SET
)
<
0
)
return
AV_NOPTS_VALUE
;
if
(
!
nuv_resync
(
s
,
pos_limit
))
return
AV_NOPTS_VALUE
;
while
(
!
url_feof
(
pb
)
&&
avio_tell
(
pb
)
<
pos_limit
)
{
if
(
avio_read
(
pb
,
hdr
,
HDRSIZE
)
<
HDRSIZE
)
return
AV_NOPTS_VALUE
;
frametype
=
hdr
[
0
];
size
=
PKTSIZE
(
AV_RL32
(
&
hdr
[
8
]));
switch
(
frametype
)
{
case
NUV_SEEKP
:
break
;
case
NUV_AUDIO
:
case
NUV_VIDEO
:
if
(
frametype
==
NUV_VIDEO
)
{
idx
=
ctx
->
v_id
;
key
=
hdr
[
2
]
==
0
;
}
else
{
idx
=
ctx
->
a_id
;
key
=
1
;
}
if
(
stream_index
==
idx
)
{
pos
=
avio_tell
(
s
->
pb
)
-
HDRSIZE
;
dts
=
AV_RL32
(
&
hdr
[
4
]);
// TODO - add general support in av_gen_search, so it adds positions after reading timestamps
av_add_index_entry
(
s
->
streams
[
stream_index
],
pos
,
dts
,
size
+
HDRSIZE
,
0
,
key
?
AVINDEX_KEYFRAME
:
0
);
*
ppos
=
pos
;
return
dts
;
}
default:
avio_skip
(
pb
,
size
);
break
;
}
}
return
AV_NOPTS_VALUE
;
}
AVInputFormat
ff_nuv_demuxer
=
{
.
name
=
"nuv"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"NuppelVideo format"
),
...
...
@@ -265,5 +340,6 @@ AVInputFormat ff_nuv_demuxer = {
.
read_probe
=
nuv_probe
,
.
read_header
=
nuv_header
,
.
read_packet
=
nuv_packet
,
.
read_timestamp
=
nuv_read_dts
,
.
flags
=
AVFMT_GENERIC_INDEX
,
};
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