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
f47f7efd
Commit
f47f7efd
authored
Sep 11, 2011
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dpcm: replace short with int16_t
parent
8d77d12a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
dpcm.c
libavcodec/dpcm.c
+3
-4
No files found.
libavcodec/dpcm.c
View file @
f47f7efd
...
...
@@ -43,7 +43,7 @@
typedef
struct
DPCMContext
{
int
channels
;
shor
t
roq_square_array
[
256
];
int16_
t
roq_square_array
[
256
];
int
sample
[
2
];
///< previous sample (for SOL_DPCM)
const
int
*
sol_table
;
//for SOL_DPCM
}
DPCMContext
;
...
...
@@ -115,7 +115,6 @@ static av_cold int dpcm_decode_init(AVCodecContext *avctx)
{
DPCMContext
*
s
=
avctx
->
priv_data
;
int
i
;
short
square
;
if
(
avctx
->
channels
<
1
||
avctx
->
channels
>
2
)
{
av_log
(
avctx
,
AV_LOG_INFO
,
"invalid number of channels
\n
"
);
...
...
@@ -130,7 +129,7 @@ static av_cold int dpcm_decode_init(AVCodecContext *avctx)
case
CODEC_ID_ROQ_DPCM
:
/* initialize square table */
for
(
i
=
0
;
i
<
128
;
i
++
)
{
square
=
i
*
i
;
int16_t
square
=
i
*
i
;
s
->
roq_square_array
[
i
]
=
square
;
s
->
roq_square_array
[
i
+
128
]
=
-
square
;
}
...
...
@@ -179,7 +178,7 @@ static int dpcm_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
int
predictor
[
2
];
int
ch
=
0
;
int
stereo
=
s
->
channels
-
1
;
shor
t
*
output_samples
=
data
;
int16_
t
*
output_samples
=
data
;
if
(
!
buf_size
)
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