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
bad700e3
Commit
bad700e3
authored
Jul 08, 2007
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trivial warning fixes
Originally committed as revision 9547 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
3b26ee47
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
6 deletions
+3
-6
cavs.h
libavcodec/cavs.h
+0
-2
h264.c
libavcodec/h264.c
+0
-1
mpegvideo.h
libavcodec/mpegvideo.h
+1
-1
snow.c
libavcodec/snow.c
+2
-2
No files found.
libavcodec/cavs.h
View file @
bad700e3
...
@@ -404,8 +404,6 @@ static inline void init_mb(AVSContext *h) {
...
@@ -404,8 +404,6 @@ static inline void init_mb(AVSContext *h) {
h
->
col_type
=
&
h
->
col_type_base
[
h
->
mby
*
h
->
mb_width
+
h
->
mbx
];
h
->
col_type
=
&
h
->
col_type_base
[
h
->
mby
*
h
->
mb_width
+
h
->
mbx
];
}
}
static
inline
void
check_for_slice
(
AVSContext
*
h
);
/**
/**
* save predictors for later macroblocks and increase
* save predictors for later macroblocks and increase
* macroblock address
* macroblock address
...
...
libavcodec/h264.c
View file @
bad700e3
...
@@ -5714,7 +5714,6 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n
...
@@ -5714,7 +5714,6 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n
int
index
[
64
];
int
index
[
64
];
int
last
;
int
coeff_count
=
0
;
int
coeff_count
=
0
;
int
abslevel1
=
1
;
int
abslevel1
=
1
;
...
...
libavcodec/mpegvideo.h
View file @
bad700e3
...
@@ -871,7 +871,7 @@ int ff_h263_resync(MpegEncContext *s);
...
@@ -871,7 +871,7 @@ int ff_h263_resync(MpegEncContext *s);
int
ff_h263_get_gob_height
(
MpegEncContext
*
s
);
int
ff_h263_get_gob_height
(
MpegEncContext
*
s
);
void
ff_mpeg4_init_direct_mv
(
MpegEncContext
*
s
);
void
ff_mpeg4_init_direct_mv
(
MpegEncContext
*
s
);
int
ff_mpeg4_set_direct_mv
(
MpegEncContext
*
s
,
int
mx
,
int
my
);
int
ff_mpeg4_set_direct_mv
(
MpegEncContext
*
s
,
int
mx
,
int
my
);
int
ff_h263_round_chroma
(
int
x
);
in
line
in
t
ff_h263_round_chroma
(
int
x
);
void
ff_h263_encode_motion
(
MpegEncContext
*
s
,
int
val
,
int
f_code
);
void
ff_h263_encode_motion
(
MpegEncContext
*
s
,
int
val
,
int
f_code
);
...
...
libavcodec/snow.c
View file @
bad700e3
...
@@ -2350,7 +2350,7 @@ static void decode_blocks(SnowContext *s){
...
@@ -2350,7 +2350,7 @@ static void decode_blocks(SnowContext *s){
}
}
}
}
static
void
mc_block
(
uint8_t
*
dst
,
uint8_t
*
src
,
uint8_t
*
tmp
,
int
stride
,
int
b_w
,
int
b_h
,
int
dx
,
int
dy
){
static
void
mc_block
(
uint8_t
*
dst
,
const
uint8_t
*
src
,
uint8_t
*
tmp
,
int
stride
,
int
b_w
,
int
b_h
,
int
dx
,
int
dy
){
int
x
,
y
;
int
x
,
y
;
START_TIMER
START_TIMER
for
(
y
=
0
;
y
<
b_h
+
5
;
y
++
){
for
(
y
=
0
;
y
<
b_h
+
5
;
y
++
){
...
@@ -2420,7 +2420,7 @@ STOP_TIMER("mc_block")
...
@@ -2420,7 +2420,7 @@ STOP_TIMER("mc_block")
}
}
#define mca(dx,dy,b_w)\
#define mca(dx,dy,b_w)\
static void mc_block_hpel ## dx ## dy ## b_w(uint8_t *dst, uint8_t *src, int stride, int h){\
static void mc_block_hpel ## dx ## dy ## b_w(uint8_t *dst,
const
uint8_t *src, int stride, int h){\
uint8_t tmp[stride*(b_w+5)];\
uint8_t tmp[stride*(b_w+5)];\
assert(h==b_w);\
assert(h==b_w);\
mc_block(dst, src-2-2*stride, tmp, stride, b_w, b_w, dx, dy);\
mc_block(dst, src-2-2*stride, tmp, stride, b_w, b_w, dx, dy);\
...
...
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