Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
dc7674b5
Commit
dc7674b5
authored
Dec 14, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/ffmpeg/video_filter.c: added RV32 -> YUVA conversion.
parent
ca0f0c57
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
modules/codec/ffmpeg/ffmpeg.c
modules/codec/ffmpeg/ffmpeg.c
+1
-0
modules/codec/ffmpeg/video_filter.c
modules/codec/ffmpeg/video_filter.c
+22
-0
No files found.
modules/codec/ffmpeg/ffmpeg.c
View file @
dc7674b5
...
...
@@ -343,6 +343,7 @@ static struct
}
chroma_table
[]
=
{
/* Planar YUV formats */
{
VLC_FOURCC
(
'Y'
,
'U'
,
'V'
,
'A'
),
PIX_FMT_YUV444P
},
/* Hack */
{
VLC_FOURCC
(
'I'
,
'4'
,
'4'
,
'4'
),
PIX_FMT_YUV444P
},
{
VLC_FOURCC
(
'I'
,
'4'
,
'2'
,
'2'
),
PIX_FMT_YUV422P
},
{
VLC_FOURCC
(
'I'
,
'4'
,
'2'
,
'0'
),
PIX_FMT_YUV420P
},
...
...
modules/codec/ffmpeg/video_filter.c
View file @
dc7674b5
...
...
@@ -266,6 +266,28 @@ static picture_t *Process( filter_t *p_filter, picture_t *p_pic )
img_resample
(
p_sys
->
p_rsc
,
&
dest_pic
,
&
src_pic
);
}
/* Special case for RV32 -> YUVA */
if
(
!
p_sys
->
b_resize
&&
p_filter
->
fmt_in
.
video
.
i_chroma
==
VLC_FOURCC
(
'R'
,
'V'
,
'3'
,
'2'
)
&&
p_filter
->
fmt_out
.
video
.
i_chroma
==
VLC_FOURCC
(
'Y'
,
'U'
,
'V'
,
'A'
)
)
{
uint8_t
*
p_src
=
p_pic
->
p
[
0
].
p_pixels
;
int
i_src_pitch
=
p_pic
->
p
[
0
].
i_pitch
;
uint8_t
*
p_dst
=
p_pic_dst
->
p
[
3
].
p_pixels
;
int
i_dst_pitch
=
p_pic_dst
->
p
[
3
].
i_pitch
;
int
j
;
for
(
i
=
0
;
i
<
p_filter
->
fmt_out
.
video
.
i_height
;
i
++
)
{
for
(
j
=
0
;
j
<
p_filter
->
fmt_out
.
video
.
i_width
;
j
++
)
{
p_dst
[
j
]
=
p_src
[
j
*
4
+
3
];
}
p_src
+=
i_src_pitch
;
p_dst
+=
i_dst_pitch
;
}
}
p_pic_dst
->
date
=
p_pic
->
date
;
p_pic_dst
->
b_force
=
p_pic
->
b_force
;
p_pic_dst
->
i_nb_fields
=
p_pic
->
i_nb_fields
;
...
...
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