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
6c28d657
Commit
6c28d657
authored
Feb 15, 2012
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rv: Add ff_ prefix to nonstatic symbols
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
d1b357d7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
ituh263dec.c
libavcodec/ituh263dec.c
+1
-1
mpegvideo.h
libavcodec/mpegvideo.h
+3
-3
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+2
-2
rv10.c
libavcodec/rv10.c
+1
-1
rv10enc.c
libavcodec/rv10enc.c
+1
-1
rv20enc.c
libavcodec/rv20enc.c
+1
-1
No files found.
libavcodec/ituh263dec.c
View file @
6c28d657
...
...
@@ -465,7 +465,7 @@ static int h263_decode_block(MpegEncContext * s, DCTELEM * block,
component
=
(
n
<=
3
?
0
:
n
-
4
+
1
);
level
=
s
->
last_dc
[
component
];
if
(
s
->
rv10_first_dc_coded
[
component
])
{
diff
=
rv_decode_dc
(
s
,
n
);
diff
=
ff_
rv_decode_dc
(
s
,
n
);
if
(
diff
==
0xffff
)
return
-
1
;
level
+=
diff
;
...
...
libavcodec/mpegvideo.h
View file @
6c28d657
...
...
@@ -813,9 +813,9 @@ int ff_h261_get_picture_format(int width, int height);
/* rv10.c */
void
rv10_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
int
rv_decode_dc
(
MpegEncContext
*
s
,
int
n
);
void
rv20_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
void
ff_
rv10_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
int
ff_
rv_decode_dc
(
MpegEncContext
*
s
,
int
n
);
void
ff_
rv20_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
/* msmpeg4.c */
...
...
libavcodec/mpegvideo_enc.c
View file @
6c28d657
...
...
@@ -3194,9 +3194,9 @@ static int encode_picture(MpegEncContext *s, int picture_number)
else
if
(
CONFIG_MPEG4_ENCODER
&&
s
->
h263_pred
)
ff_mpeg4_encode_picture_header
(
s
,
picture_number
);
else
if
(
CONFIG_RV10_ENCODER
&&
s
->
codec_id
==
CODEC_ID_RV10
)
rv10_encode_picture_header
(
s
,
picture_number
);
ff_
rv10_encode_picture_header
(
s
,
picture_number
);
else
if
(
CONFIG_RV20_ENCODER
&&
s
->
codec_id
==
CODEC_ID_RV20
)
rv20_encode_picture_header
(
s
,
picture_number
);
ff_
rv20_encode_picture_header
(
s
,
picture_number
);
else
if
(
CONFIG_FLV_ENCODER
&&
s
->
codec_id
==
CODEC_ID_FLV1
)
ff_flv_encode_picture_header
(
s
,
picture_number
);
else
if
(
CONFIG_H263_ENCODER
)
...
...
libavcodec/rv10.c
View file @
6c28d657
...
...
@@ -186,7 +186,7 @@ static const uint8_t rv_chrom_bits[256] =
static
VLC
rv_dc_lum
,
rv_dc_chrom
;
int
rv_decode_dc
(
MpegEncContext
*
s
,
int
n
)
int
ff_
rv_decode_dc
(
MpegEncContext
*
s
,
int
n
)
{
int
code
;
...
...
libavcodec/rv10enc.c
View file @
6c28d657
...
...
@@ -28,7 +28,7 @@
#include "mpegvideo.h"
#include "put_bits.h"
void
rv10_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
)
void
ff_
rv10_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
)
{
int
full_frame
=
0
;
...
...
libavcodec/rv20enc.c
View file @
6c28d657
...
...
@@ -29,7 +29,7 @@
#include "h263.h"
#include "put_bits.h"
void
rv20_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
){
void
ff_
rv20_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
){
put_bits
(
&
s
->
pb
,
2
,
s
->
pict_type
);
//I 0 vs. 1 ?
put_bits
(
&
s
->
pb
,
1
,
0
);
/* unknown bit */
put_bits
(
&
s
->
pb
,
5
,
s
->
qscale
);
...
...
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