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
1345f4ed
Commit
1345f4ed
authored
Nov 01, 2006
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename SWAP macro to FFSWAP.
Originally committed as revision 6865 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
e344c1ea
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
dsicinav.c
libavcodec/dsicinav.c
+1
-1
mpegvideo.c
libavcodec/mpegvideo.c
+4
-4
utils.c
libavformat/utils.c
+1
-1
common.h
libavutil/common.h
+1
-1
No files found.
libavcodec/dsicinav.c
View file @
1345f4ed
...
@@ -278,7 +278,7 @@ static int cinvideo_decode_frame(AVCodecContext *avctx,
...
@@ -278,7 +278,7 @@ static int cinvideo_decode_frame(AVCodecContext *avctx,
cin
->
bitmap_table
[
CIN_CUR_BMP
]
+
y
*
cin
->
avctx
->
width
,
cin
->
bitmap_table
[
CIN_CUR_BMP
]
+
y
*
cin
->
avctx
->
width
,
cin
->
avctx
->
width
);
cin
->
avctx
->
width
);
SWAP
(
uint8_t
*
,
cin
->
bitmap_table
[
CIN_CUR_BMP
],
cin
->
bitmap_table
[
CIN_PRE_BMP
]);
FF
SWAP
(
uint8_t
*
,
cin
->
bitmap_table
[
CIN_CUR_BMP
],
cin
->
bitmap_table
[
CIN_PRE_BMP
]);
*
data_size
=
sizeof
(
AVFrame
);
*
data_size
=
sizeof
(
AVFrame
);
*
(
AVFrame
*
)
data
=
cin
->
frame
;
*
(
AVFrame
*
)
data
=
cin
->
frame
;
...
...
libavcodec/mpegvideo.c
View file @
1345f4ed
...
@@ -1705,8 +1705,8 @@ static void draw_line(uint8_t *buf, int sx, int sy, int ex, int ey, int w, int h
...
@@ -1705,8 +1705,8 @@ static void draw_line(uint8_t *buf, int sx, int sy, int ex, int ey, int w, int h
if
(
FFABS
(
ex
-
sx
)
>
FFABS
(
ey
-
sy
)){
if
(
FFABS
(
ex
-
sx
)
>
FFABS
(
ey
-
sy
)){
if
(
sx
>
ex
){
if
(
sx
>
ex
){
SWAP
(
int
,
sx
,
ex
);
FF
SWAP
(
int
,
sx
,
ex
);
SWAP
(
int
,
sy
,
ey
);
FF
SWAP
(
int
,
sy
,
ey
);
}
}
buf
+=
sx
+
sy
*
stride
;
buf
+=
sx
+
sy
*
stride
;
ex
-=
sx
;
ex
-=
sx
;
...
@@ -1719,8 +1719,8 @@ static void draw_line(uint8_t *buf, int sx, int sy, int ex, int ey, int w, int h
...
@@ -1719,8 +1719,8 @@ static void draw_line(uint8_t *buf, int sx, int sy, int ex, int ey, int w, int h
}
}
}
else
{
}
else
{
if
(
sy
>
ey
){
if
(
sy
>
ey
){
SWAP
(
int
,
sx
,
ex
);
FF
SWAP
(
int
,
sx
,
ex
);
SWAP
(
int
,
sy
,
ey
);
FF
SWAP
(
int
,
sy
,
ey
);
}
}
buf
+=
sx
+
sy
*
stride
;
buf
+=
sx
+
sy
*
stride
;
ey
-=
sy
;
ey
-=
sy
;
...
...
libavformat/utils.c
View file @
1345f4ed
...
@@ -2230,7 +2230,7 @@ static int compute_pkt_fields2(AVStream *st, AVPacket *pkt){
...
@@ -2230,7 +2230,7 @@ static int compute_pkt_fields2(AVStream *st, AVPacket *pkt){
for
(
i
=
1
;
i
<
delay
+
1
&&
st
->
pts_buffer
[
i
]
==
AV_NOPTS_VALUE
;
i
++
)
for
(
i
=
1
;
i
<
delay
+
1
&&
st
->
pts_buffer
[
i
]
==
AV_NOPTS_VALUE
;
i
++
)
st
->
pts_buffer
[
i
]
=
(
i
-
delay
-
1
)
*
pkt
->
duration
;
st
->
pts_buffer
[
i
]
=
(
i
-
delay
-
1
)
*
pkt
->
duration
;
for
(
i
=
0
;
i
<
delay
&&
st
->
pts_buffer
[
i
]
>
st
->
pts_buffer
[
i
+
1
];
i
++
)
for
(
i
=
0
;
i
<
delay
&&
st
->
pts_buffer
[
i
]
>
st
->
pts_buffer
[
i
+
1
];
i
++
)
SWAP
(
int64_t
,
st
->
pts_buffer
[
i
],
st
->
pts_buffer
[
i
+
1
]);
FF
SWAP
(
int64_t
,
st
->
pts_buffer
[
i
],
st
->
pts_buffer
[
i
+
1
]);
pkt
->
dts
=
st
->
pts_buffer
[
0
];
pkt
->
dts
=
st
->
pts_buffer
[
0
];
}
}
...
...
libavutil/common.h
View file @
1345f4ed
...
@@ -198,7 +198,7 @@ typedef uint64_t uint_fast64_t;
...
@@ -198,7 +198,7 @@ typedef uint64_t uint_fast64_t;
#define FFMAX(a,b) ((a) > (b) ? (a) : (b))
#define FFMAX(a,b) ((a) > (b) ? (a) : (b))
#define FFMIN(a,b) ((a) > (b) ? (b) : (a))
#define FFMIN(a,b) ((a) > (b) ? (b) : (a))
#define SWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
#define
FF
SWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
/* misc math functions */
/* misc math functions */
extern
FF_IMPORT_ATTR
const
uint8_t
ff_log2_tab
[
256
];
extern
FF_IMPORT_ATTR
const
uint8_t
ff_log2_tab
[
256
];
...
...
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