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
ce1b1bda
Commit
ce1b1bda
authored
Jul 11, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics.
parent
4e57bfa7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
11 deletions
+8
-11
modules/video_filter/deinterlace.c
modules/video_filter/deinterlace.c
+8
-11
No files found.
modules/video_filter/deinterlace.c
View file @
ce1b1bda
...
...
@@ -1567,9 +1567,7 @@ static picture_t *Deinterlace( filter_t *p_filter, picture_t *p_pic )
RenderLinear( p_filter, pp_outpic[1], p_pic, p_pic->b_top_field_first );
#endif
msg_Err
(
p_filter
,
"doubling the frame rate is not supported yet"
);
picture_Release
(
p_pic_dst
);
picture_Release
(
p_pic
);
return
NULL
;
goto
drop
;
case
DEINTERLACE_MEAN
:
RenderMean
(
p_filter
,
p_pic_dst
,
p_pic
);
...
...
@@ -1585,26 +1583,25 @@ static picture_t *Deinterlace( filter_t *p_filter, picture_t *p_pic )
case
DEINTERLACE_YADIF
:
if
(
RenderYadif
(
p_filter
,
p_pic_dst
,
p_pic
,
0
,
0
)
)
{
picture_Release
(
p_pic_dst
);
picture_Release
(
p_pic
);
return
NULL
;
}
goto
drop
;
break
;
case
DEINTERLACE_YADIF2X
:
msg_Err
(
p_filter
,
"doubling the frame rate is not supported yet"
);
//RenderYadif( p_vout, pp_outpic[0], p_pic, 0, !p_pic->b_top_field_first );
//RenderYadif( p_vout, pp_outpic[1], p_pic, 1, p_pic->b_top_field_first );
picture_Release
(
p_pic_dst
);
picture_Release
(
p_pic
);
return
NULL
;
goto
drop
;
}
p_pic_dst
->
b_progressive
=
true
;
picture_Release
(
p_pic
);
return
p_pic_dst
;
drop:
picture_Release
(
p_pic_dst
);
picture_Release
(
p_pic
);
return
NULL
;
}
static
void
Flush
(
filter_t
*
p_filter
)
...
...
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