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
34126cd0
Commit
34126cd0
authored
Feb 12, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/transpose: support more pix fmts
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
cf73e0bf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
22 deletions
+24
-22
vf_transpose.c
libavfilter/vf_transpose.c
+24
-22
No files found.
libavfilter/vf_transpose.c
View file @
34126cd0
...
@@ -86,28 +86,20 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
...
@@ -86,28 +86,20 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
static
int
query_formats
(
AVFilterContext
*
ctx
)
static
int
query_formats
(
AVFilterContext
*
ctx
)
{
{
static
const
enum
AVPixelFormat
pix_fmts
[]
=
{
AVFilterFormats
*
pix_fmts
=
NULL
;
AV_PIX_FMT_ARGB
,
AV_PIX_FMT_RGBA
,
int
fmt
;
AV_PIX_FMT_ABGR
,
AV_PIX_FMT_BGRA
,
AV_PIX_FMT_RGB24
,
AV_PIX_FMT_BGR24
,
for
(
fmt
=
0
;
fmt
<
AV_PIX_FMT_NB
;
fmt
++
)
{
AV_PIX_FMT_RGB565BE
,
AV_PIX_FMT_RGB565LE
,
const
AVPixFmtDescriptor
*
desc
=
av_pix_fmt_desc_get
(
fmt
);
AV_PIX_FMT_RGB555BE
,
AV_PIX_FMT_RGB555LE
,
if
(
!
(
desc
->
flags
&
PIX_FMT_PAL
||
AV_PIX_FMT_BGR565BE
,
AV_PIX_FMT_BGR565LE
,
desc
->
flags
&
PIX_FMT_HWACCEL
||
AV_PIX_FMT_BGR555BE
,
AV_PIX_FMT_BGR555LE
,
desc
->
flags
&
PIX_FMT_BITSTREAM
||
AV_PIX_FMT_GRAY16BE
,
AV_PIX_FMT_GRAY16LE
,
desc
->
log2_chroma_w
!=
desc
->
log2_chroma_h
))
AV_PIX_FMT_YUV420P16LE
,
AV_PIX_FMT_YUV420P16BE
,
ff_add_format
(
&
pix_fmts
,
fmt
);
AV_PIX_FMT_YUV444P16LE
,
AV_PIX_FMT_YUV444P16BE
,
}
AV_PIX_FMT_NV12
,
AV_PIX_FMT_NV21
,
AV_PIX_FMT_RGB8
,
AV_PIX_FMT_BGR8
,
AV_PIX_FMT_RGB4_BYTE
,
AV_PIX_FMT_BGR4_BYTE
,
ff_set_common_formats
(
ctx
,
pix_fmts
);
AV_PIX_FMT_YUV444P
,
AV_PIX_FMT_YUVJ444P
,
AV_PIX_FMT_YUV420P
,
AV_PIX_FMT_YUVJ420P
,
AV_PIX_FMT_YUV410P
,
AV_PIX_FMT_YUVA420P
,
AV_PIX_FMT_GRAY8
,
AV_PIX_FMT_NONE
};
ff_set_common_formats
(
ctx
,
ff_make_format_list
(
pix_fmts
));
return
0
;
return
0
;
}
}
...
@@ -236,6 +228,16 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *in)
...
@@ -236,6 +228,16 @@ static int filter_frame(AVFilterLink *inlink, AVFilterBufferRef *in)
for
(
x
=
0
;
x
<
outw
;
x
++
)
for
(
x
=
0
;
x
<
outw
;
x
++
)
*
((
uint32_t
*
)(
dst
+
4
*
x
))
=
*
((
uint32_t
*
)(
src
+
x
*
srclinesize
+
y
*
4
));
*
((
uint32_t
*
)(
dst
+
4
*
x
))
=
*
((
uint32_t
*
)(
src
+
x
*
srclinesize
+
y
*
4
));
break
;
break
;
case
6
:
for
(
x
=
0
;
x
<
outw
;
x
++
)
{
int64_t
v
=
AV_RB48
(
src
+
x
*
srclinesize
+
y
*
6
);
AV_WB48
(
dst
+
6
*
x
,
v
);
}
break
;
case
8
:
for
(
x
=
0
;
x
<
outw
;
x
++
)
*
((
uint64_t
*
)(
dst
+
8
*
x
))
=
*
((
uint64_t
*
)(
src
+
x
*
srclinesize
+
y
*
8
));
break
;
}
}
dst
+=
dstlinesize
;
dst
+=
dstlinesize
;
}
}
...
...
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