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
0ada7d44
Commit
0ada7d44
authored
May 06, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed video_format_IsSimilar regarding sar.
It also fixes es_format_IsSimilar.
parent
de53ab42
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
src/misc/es_format.c
src/misc/es_format.c
+2
-0
No files found.
src/misc/es_format.c
View file @
0ada7d44
...
...
@@ -219,6 +219,8 @@ bool video_format_IsSimilar( const video_format_t *p_fmt1, const video_format_t
v1
.
i_visible_height
!=
v2
.
i_visible_height
||
v1
.
i_x_offset
!=
v2
.
i_x_offset
||
v1
.
i_y_offset
!=
v2
.
i_y_offset
)
return
false
;
if
(
v1
.
i_sar_num
*
v2
.
i_sar_den
!=
v2
.
i_sar_num
*
v1
.
i_sar_den
)
return
false
;
if
(
v1
.
i_chroma
==
VLC_CODEC_RGB15
||
v1
.
i_chroma
==
VLC_CODEC_RGB16
||
...
...
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