Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
613a37ec
Commit
613a37ec
authored
Mar 15, 2013
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ape: 3.80-3.92 decoding support
parent
ccd349e5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
3 deletions
+25
-3
apedec.c
libavcodec/apedec.c
+0
-0
ape.c
libavformat/ape.c
+25
-3
No files found.
libavcodec/apedec.c
View file @
613a37ec
This diff is collapsed.
Click to expand it.
libavformat/ape.c
View file @
613a37ec
...
...
@@ -28,7 +28,7 @@
#include "apetag.h"
/* The earliest and latest file formats supported by this library */
#define APE_MIN_VERSION 3
93
0
#define APE_MIN_VERSION 3
80
0
#define APE_MAX_VERSION 3990
#define MAC_FORMAT_FLAG_8_BIT 1 // is 8-bit [OBSOLETE]
...
...
@@ -83,6 +83,7 @@ typedef struct {
/* Seektable */
uint32_t
*
seektable
;
uint8_t
*
bittable
;
}
APEContext
;
static
int
ape_probe
(
AVProbeData
*
p
)
...
...
@@ -130,9 +131,13 @@ static void ape_dumpinfo(AVFormatContext * s, APEContext * ape_ctx)
}
else
{
for
(
i
=
0
;
i
<
ape_ctx
->
seektablelength
/
sizeof
(
uint32_t
);
i
++
)
{
if
(
i
<
ape_ctx
->
totalframes
-
1
)
{
av_log
(
s
,
AV_LOG_DEBUG
,
"%8d %"
PRIu32
" (%"
PRIu32
" bytes)
\n
"
,
av_log
(
s
,
AV_LOG_DEBUG
,
"%8d %"
PRIu32
" (%"
PRIu32
" bytes)"
,
i
,
ape_ctx
->
seektable
[
i
],
ape_ctx
->
seektable
[
i
+
1
]
-
ape_ctx
->
seektable
[
i
]);
if
(
s
->
bittable
)
av_log
(
s
,
AV_LOG_DEBUG
,
" + %2d bits
\n
"
,
ape_ctx
->
bittable
[
i
]);
av_log
(
s
,
AV_LOG_DEBUG
,
"
\n
"
);
}
else
{
av_log
(
s
,
AV_LOG_DEBUG
,
"%8d %"
PRIu32
"
\n
"
,
i
,
ape_ctx
->
seektable
[
i
]);
}
...
...
@@ -265,6 +270,8 @@ static int ape_read_header(AVFormatContext * s)
if
(
!
ape
->
frames
)
return
AVERROR
(
ENOMEM
);
ape
->
firstframe
=
ape
->
junklength
+
ape
->
descriptorlength
+
ape
->
headerlength
+
ape
->
seektablelength
+
ape
->
wavheaderlength
;
if
(
ape
->
fileversion
<
3810
)
ape
->
firstframe
+=
ape
->
totalframes
;
ape
->
currentframe
=
0
;
...
...
@@ -278,6 +285,13 @@ static int ape_read_header(AVFormatContext * s)
return
AVERROR
(
ENOMEM
);
for
(
i
=
0
;
i
<
ape
->
seektablelength
/
sizeof
(
uint32_t
);
i
++
)
ape
->
seektable
[
i
]
=
avio_rl32
(
pb
);
if
(
ape
->
fileversion
<
3810
)
{
ape
->
bittable
=
av_malloc
(
ape
->
totalframes
);
if
(
!
ape
->
bittable
)
return
AVERROR
(
ENOMEM
);
for
(
i
=
0
;
i
<
ape
->
totalframes
;
i
++
)
ape
->
bittable
[
i
]
=
avio_r8
(
pb
);
}
}
ape
->
frames
[
0
].
pos
=
ape
->
firstframe
;
...
...
@@ -308,7 +322,14 @@ static int ape_read_header(AVFormatContext * s)
}
ape
->
frames
[
i
].
size
=
(
ape
->
frames
[
i
].
size
+
3
)
&
~
3
;
}
if
(
ape
->
fileversion
<
3810
)
{
for
(
i
=
0
;
i
<
ape
->
totalframes
;
i
++
)
{
if
(
i
<
ape
->
totalframes
-
1
&&
ape
->
bittable
[
i
+
1
])
ape
->
frames
[
i
].
size
+=
4
;
ape
->
frames
[
i
].
skip
<<=
3
;
ape
->
frames
[
i
].
skip
+=
ape
->
bittable
[
i
];
}
}
ape_dumpinfo
(
s
,
ape
);
...
...
@@ -411,6 +432,7 @@ static int ape_read_close(AVFormatContext * s)
av_freep
(
&
ape
->
frames
);
av_freep
(
&
ape
->
seektable
);
av_freep
(
&
ape
->
bittable
);
return
0
;
}
...
...
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