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
6f9803e5
Commit
6f9803e5
authored
Mar 16, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sonic: update to new API
Fixes Ticket1075 Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
d9fe6b92
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
4 deletions
+17
-4
sonic.c
libavcodec/sonic.c
+17
-4
No files found.
libavcodec/sonic.c
View file @
6f9803e5
...
...
@@ -44,6 +44,7 @@
#define RIGHT_SIDE 2
typedef
struct
SonicContext
{
AVFrame
frame
;
int
lossless
,
decorrelation
;
int
num_taps
,
downsampling
;
...
...
@@ -757,6 +758,9 @@ static av_cold int sonic_decode_init(AVCodecContext *avctx)
s
->
channels
=
avctx
->
channels
;
s
->
samplerate
=
avctx
->
sample_rate
;
avcodec_get_frame_defaults
(
&
s
->
frame
);
avctx
->
coded_frame
=
&
s
->
frame
;
if
(
!
avctx
->
extradata
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"No mandatory headers present
\n
"
);
...
...
@@ -848,18 +852,25 @@ static av_cold int sonic_decode_close(AVCodecContext *avctx)
}
static
int
sonic_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
data_size
,
void
*
data
,
int
*
got_frame_ptr
,
AVPacket
*
avpkt
)
{
const
uint8_t
*
buf
=
avpkt
->
data
;
int
buf_size
=
avpkt
->
size
;
SonicContext
*
s
=
avctx
->
priv_data
;
GetBitContext
gb
;
int
i
,
quant
,
ch
,
j
;
short
*
samples
=
data
;
int
i
,
quant
,
ch
,
j
,
ret
;
short
*
samples
;
if
(
buf_size
==
0
)
return
0
;
s
->
frame
.
nb_samples
=
s
->
frame_size
;
if
((
ret
=
avctx
->
get_buffer
(
avctx
,
&
s
->
frame
))
<
0
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"get_buffer() failed
\n
"
);
return
ret
;
}
samples
=
s
->
frame
.
data
[
0
];
// av_log(NULL, AV_LOG_INFO, "buf_size: %d\n", buf_size);
init_get_bits
(
&
gb
,
buf
,
buf_size
*
8
);
...
...
@@ -930,7 +941,8 @@ static int sonic_decode_frame(AVCodecContext *avctx,
align_get_bits
(
&
gb
);
*
data_size
=
s
->
frame_size
*
2
;
*
got_frame_ptr
=
1
;
*
(
AVFrame
*
)
data
=
s
->
frame
;
return
(
get_bits_count
(
&
gb
)
+
7
)
/
8
;
}
...
...
@@ -943,6 +955,7 @@ AVCodec ff_sonic_decoder = {
.
init
=
sonic_decode_init
,
.
close
=
sonic_decode_close
,
.
decode
=
sonic_decode_frame
,
.
capabilities
=
CODEC_CAP_DR1
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Sonic"
),
};
#endif
/* CONFIG_SONIC_DECODER */
...
...
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