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
a44cbc1c
Commit
a44cbc1c
authored
Sep 18, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sonic: update to encode2() API
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
4cdc337b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
7 deletions
+14
-7
sonic.c
libavcodec/sonic.c
+14
-7
No files found.
libavcodec/sonic.c
View file @
a44cbc1c
...
...
@@ -21,6 +21,7 @@
#include "avcodec.h"
#include "get_bits.h"
#include "golomb.h"
#include "internal.h"
/**
* @file
...
...
@@ -622,15 +623,19 @@ static av_cold int sonic_encode_close(AVCodecContext *avctx)
return
0
;
}
static
int
sonic_encode_frame
(
AVCodecContext
*
avctx
,
uint8_t
*
buf
,
int
buf_size
,
void
*
data
)
static
int
sonic_encode_frame
(
AVCodecContext
*
avctx
,
AVPacket
*
avpkt
,
const
AVFrame
*
frame
,
int
*
got_packet_ptr
)
{
SonicContext
*
s
=
avctx
->
priv_data
;
PutBitContext
pb
;
int
i
,
j
,
ch
,
quant
=
0
,
x
=
0
;
short
*
samples
=
data
;
int
ret
;
const
short
*
samples
=
(
const
int16_t
*
)
frame
->
data
[
0
];
init_put_bits
(
&
pb
,
buf
,
buf_size
*
8
);
if
((
ret
=
ff_alloc_packet2
(
avctx
,
avpkt
,
s
->
frame_size
*
5
+
1000
)))
return
ret
;
init_put_bits
(
&
pb
,
avpkt
->
data
,
avpkt
->
size
);
// short -> internal
for
(
i
=
0
;
i
<
s
->
frame_size
;
i
++
)
...
...
@@ -741,7 +746,9 @@ static int sonic_encode_frame(AVCodecContext *avctx,
// av_log(avctx, AV_LOG_DEBUG, "used bytes: %d\n", (put_bits_count(&pb)+7)/8);
flush_put_bits
(
&
pb
);
return
(
put_bits_count
(
&
pb
)
+
7
)
/
8
;
avpkt
->
size
=
(
put_bits_count
(
&
pb
)
+
7
)
/
8
;
*
got_packet_ptr
=
1
;
return
0
;
}
#endif
/* CONFIG_SONIC_ENCODER || CONFIG_SONIC_LS_ENCODER */
...
...
@@ -972,7 +979,7 @@ AVCodec ff_sonic_encoder = {
.
id
=
AV_CODEC_ID_SONIC
,
.
priv_data_size
=
sizeof
(
SonicContext
),
.
init
=
sonic_encode_init
,
.
encode
=
sonic_encode_frame
,
.
encode
2
=
sonic_encode_frame
,
.
capabilities
=
CODEC_CAP_EXPERIMENTAL
,
.
close
=
sonic_encode_close
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Sonic"
),
...
...
@@ -986,7 +993,7 @@ AVCodec ff_sonic_ls_encoder = {
.
id
=
AV_CODEC_ID_SONIC_LS
,
.
priv_data_size
=
sizeof
(
SonicContext
),
.
init
=
sonic_encode_init
,
.
encode
=
sonic_encode_frame
,
.
encode
2
=
sonic_encode_frame
,
.
capabilities
=
CODEC_CAP_EXPERIMENTAL
,
.
close
=
sonic_encode_close
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Sonic lossless"
),
...
...
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