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
b5777b94
Commit
b5777b94
authored
Feb 01, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
const
Originally committed as revision 11711 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
e68c7a4a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
aasc.c
libavcodec/aasc.c
+1
-1
alac.c
libavcodec/alac.c
+2
-2
sp5xdec.c
libavcodec/sp5xdec.c
+3
-2
No files found.
libavcodec/aasc.c
View file @
b5777b94
...
...
@@ -58,7 +58,7 @@ static int aasc_decode_init(AVCodecContext *avctx)
static
int
aasc_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
data_size
,
uint8_t
*
buf
,
int
buf_size
)
const
uint8_t
*
buf
,
int
buf_size
)
{
AascContext
*
s
=
avctx
->
priv_data
;
int
stream_ptr
=
4
;
...
...
libavcodec/alac.c
View file @
b5777b94
...
...
@@ -107,7 +107,7 @@ static void allocate_buffers(ALACContext *alac)
static
int
alac_set_info
(
ALACContext
*
alac
)
{
unsigned
char
*
ptr
=
alac
->
avctx
->
extradata
;
const
unsigned
char
*
ptr
=
alac
->
avctx
->
extradata
;
ptr
+=
4
;
/* size */
ptr
+=
4
;
/* alac */
...
...
@@ -439,7 +439,7 @@ static void reconstruct_stereo_16(int32_t *buffer[MAX_CHANNELS],
static
int
alac_decode_frame
(
AVCodecContext
*
avctx
,
void
*
outbuffer
,
int
*
outputsize
,
uint8_t
*
inbuffer
,
int
input_buffer_size
)
const
uint8_t
*
inbuffer
,
int
input_buffer_size
)
{
ALACContext
*
alac
=
avctx
->
priv_data
;
...
...
libavcodec/sp5xdec.c
View file @
b5777b94
...
...
@@ -32,13 +32,14 @@
static
int
sp5x_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
data_size
,
uint8_t
*
buf
,
int
buf_size
)
const
uint8_t
*
buf
,
int
buf_size
)
{
#if 0
MJpegDecodeContext *s = avctx->priv_data;
#endif
const
int
qscale
=
5
;
uint8_t
*
buf_ptr
,
*
buf_end
,
*
recoded
;
const
uint8_t
*
buf_ptr
,
*
buf_end
;
uint8_t
*
recoded
;
int
i
=
0
,
j
=
0
;
if
(
!
avctx
->
width
||
!
avctx
->
height
)
...
...
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