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
101c369b
Commit
101c369b
authored
Jan 13, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tta demuxer: set packet duration
parent
0b8b7db0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
tta.c
libavformat/tta.c
+12
-4
No files found.
libavformat/tta.c
View file @
101c369b
...
...
@@ -27,6 +27,8 @@
typedef
struct
{
int
totalframes
,
currentframe
;
int
frame_size
;
int
last_frame_size
;
}
TTAContext
;
static
int
tta_probe
(
AVProbeData
*
p
)
...
...
@@ -42,7 +44,7 @@ static int tta_read_header(AVFormatContext *s)
{
TTAContext
*
c
=
s
->
priv_data
;
AVStream
*
st
;
int
i
,
channels
,
bps
,
samplerate
,
datalen
,
framelen
;
int
i
,
channels
,
bps
,
samplerate
,
datalen
;
uint64_t
framepos
,
start_offset
;
if
(
!
av_dict_get
(
s
->
metadata
,
""
,
NULL
,
AV_DICT_IGNORE_SUFFIX
))
...
...
@@ -69,8 +71,11 @@ static int tta_read_header(AVFormatContext *s)
avio_skip
(
s
->
pb
,
4
);
// header crc
framelen
=
samplerate
*
256
/
245
;
c
->
totalframes
=
datalen
/
framelen
+
((
datalen
%
framelen
)
?
1
:
0
);
c
->
frame_size
=
samplerate
*
256
/
245
;
c
->
last_frame_size
=
datalen
%
c
->
frame_size
;
if
(
!
c
->
last_frame_size
)
c
->
last_frame_size
=
c
->
frame_size
;
c
->
totalframes
=
datalen
/
c
->
frame_size
+
(
c
->
last_frame_size
<
c
->
frame_size
);
c
->
currentframe
=
0
;
if
(
c
->
totalframes
>=
UINT_MAX
/
sizeof
(
uint32_t
)){
...
...
@@ -90,7 +95,8 @@ static int tta_read_header(AVFormatContext *s)
for
(
i
=
0
;
i
<
c
->
totalframes
;
i
++
)
{
uint32_t
size
=
avio_rl32
(
s
->
pb
);
av_add_index_entry
(
st
,
framepos
,
i
*
framelen
,
size
,
0
,
AVINDEX_KEYFRAME
);
av_add_index_entry
(
st
,
framepos
,
i
*
c
->
frame_size
,
size
,
0
,
AVINDEX_KEYFRAME
);
framepos
+=
size
;
}
avio_skip
(
s
->
pb
,
4
);
// seektable crc
...
...
@@ -132,6 +138,8 @@ static int tta_read_packet(AVFormatContext *s, AVPacket *pkt)
ret
=
av_get_packet
(
s
->
pb
,
pkt
,
size
);
pkt
->
dts
=
st
->
index_entries
[
c
->
currentframe
++
].
timestamp
;
pkt
->
duration
=
c
->
currentframe
==
c
->
totalframes
?
c
->
last_frame_size
:
c
->
frame_size
;
return
ret
;
}
...
...
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