Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
60008c0f
Commit
60008c0f
authored
7 years ago
by
Tobias Rapp
Browse files
Options
Downloads
Patches
Plain Diff
fate: update pixfmt_best test to check for endianness
Signed-off-by:
Tobias Rapp
<
t.rapp@noa-archive.com
>
parent
296debd2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavutil/tests/pixfmt_best.c
+14
-0
14 additions, 0 deletions
libavutil/tests/pixfmt_best.c
tests/ref/fate/pixfmt_best
+1
-1
1 addition, 1 deletion
tests/ref/fate/pixfmt_best
with
15 additions
and
1 deletion
libavutil/tests/pixfmt_best.c
+
14
−
0
View file @
60008c0f
...
@@ -117,6 +117,20 @@ int main(void)
...
@@ -117,6 +117,20 @@ int main(void)
TEST
(
AV_PIX_FMT_GBRAP10
,
AV_PIX_FMT_RGB48
);
TEST
(
AV_PIX_FMT_GBRAP10
,
AV_PIX_FMT_RGB48
);
TEST
(
AV_PIX_FMT_GBRAP12
,
AV_PIX_FMT_RGB48
);
TEST
(
AV_PIX_FMT_GBRAP12
,
AV_PIX_FMT_RGB48
);
// Formats containing the same data in different endianness.
TEST
(
AV_PIX_FMT_GRAY10BE
,
AV_PIX_FMT_GRAY10
);
TEST
(
AV_PIX_FMT_GRAY10LE
,
AV_PIX_FMT_GRAY10
);
TEST
(
AV_PIX_FMT_GRAY16BE
,
AV_PIX_FMT_GRAY16
);
TEST
(
AV_PIX_FMT_GRAY16LE
,
AV_PIX_FMT_GRAY16
);
TEST
(
AV_PIX_FMT_YUV422P10BE
,
AV_PIX_FMT_YUV422P10
);
TEST
(
AV_PIX_FMT_YUV422P10LE
,
AV_PIX_FMT_YUV422P10
);
TEST
(
AV_PIX_FMT_YUV444P16BE
,
AV_PIX_FMT_YUV444P16
);
TEST
(
AV_PIX_FMT_YUV444P16LE
,
AV_PIX_FMT_YUV444P16
);
TEST
(
AV_PIX_FMT_RGB565BE
,
AV_PIX_FMT_RGB565
);
TEST
(
AV_PIX_FMT_RGB565LE
,
AV_PIX_FMT_RGB565
);
TEST
(
AV_PIX_FMT_RGB48BE
,
AV_PIX_FMT_RGB48
);
TEST
(
AV_PIX_FMT_RGB48LE
,
AV_PIX_FMT_RGB48
);
// Opaque formats are least unlike each other.
// Opaque formats are least unlike each other.
TEST
(
AV_PIX_FMT_DXVA2_VLD
,
AV_PIX_FMT_VDPAU
);
TEST
(
AV_PIX_FMT_DXVA2_VLD
,
AV_PIX_FMT_VDPAU
);
...
...
This diff is collapsed.
Click to expand it.
tests/ref/fate/pixfmt_best
+
1
−
1
View file @
60008c0f
60
tests passed, 0 tests failed.
72
tests passed, 0 tests failed.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment