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
17b98c1a
Commit
17b98c1a
authored
Jul 14, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fate: fix stereo3d
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
d5598c09
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
48 additions
and
48 deletions
+48
-48
filter-video.mak
tests/fate/filter-video.mak
+8
-8
filter-stereo3d-abr-ml
tests/ref/fate/filter-stereo3d-abr-ml
+5
-5
filter-stereo3d-abr-mr
tests/ref/fate/filter-stereo3d-abr-mr
+5
-5
filter-stereo3d-al-sbsl
tests/ref/fate/filter-stereo3d-al-sbsl
+5
-5
filter-stereo3d-ar-abl
tests/ref/fate/filter-stereo3d-ar-abl
+5
-5
filter-stereo3d-sbsl-abl
tests/ref/fate/filter-stereo3d-sbsl-abl
+5
-5
filter-stereo3d-sbsl-abr
tests/ref/fate/filter-stereo3d-sbsl-abr
+5
-5
filter-stereo3d-sbsl-al
tests/ref/fate/filter-stereo3d-sbsl-al
+5
-5
filter-stereo3d-sbsl-sbsr
tests/ref/fate/filter-stereo3d-sbsl-sbsr
+5
-5
No files found.
tests/fate/filter-video.mak
View file @
17b98c1a
...
...
@@ -196,28 +196,28 @@ FATE_FILTER_VSYNTH-$(CONFIG_SETSAR_FILTER) += fate-filter-setsar
fate-filter-setsar: CMD = video_filter "setsar=sar=16/11"
FATE_STEREO3D += fate-filter-stereo3d-al-sbsl
fate-filter-stereo3d-al-sbsl: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -vf stereo3d=al:sbsl
fate-filter-stereo3d-al-sbsl: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -
flags +bitexact -sws_flags +accurate_rnd+bitexact -
vf stereo3d=al:sbsl
FATE_STEREO3D += fate-filter-stereo3d-ar-abl
fate-filter-stereo3d-ar-abl: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -vf stereo3d=ar:abl
fate-filter-stereo3d-ar-abl: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -
flags +bitexact -sws_flags +accurate_rnd+bitexact -
vf stereo3d=ar:abl
FATE_STEREO3D += fate-filter-stereo3d-abr-mr
fate-filter-stereo3d-abr-mr: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -vf stereo3d=abr:mr
fate-filter-stereo3d-abr-mr: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -
flags +bitexact -sws_flags +accurate_rnd+bitexact -
vf stereo3d=abr:mr
FATE_STEREO3D += fate-filter-stereo3d-abr-ml
fate-filter-stereo3d-abr-ml: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -vf stereo3d=abr:ml
fate-filter-stereo3d-abr-ml: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -
flags +bitexact -sws_flags +accurate_rnd+bitexact -
vf stereo3d=abr:ml
FATE_STEREO3D += fate-filter-stereo3d-sbsl-abl
fate-filter-stereo3d-sbsl-abl: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -vf stereo3d=sbsl:abl
fate-filter-stereo3d-sbsl-abl: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -
flags +bitexact -sws_flags +accurate_rnd+bitexact -
vf stereo3d=sbsl:abl
FATE_STEREO3D += fate-filter-stereo3d-sbsl-abr
fate-filter-stereo3d-sbsl-abr: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -vf stereo3d=sbsl:abr
fate-filter-stereo3d-sbsl-abr: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -
flags +bitexact -sws_flags +accurate_rnd+bitexact -
vf stereo3d=sbsl:abr
FATE_STEREO3D += fate-filter-stereo3d-sbsl-al
fate-filter-stereo3d-sbsl-al: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -vf stereo3d=sbsl:al
fate-filter-stereo3d-sbsl-al: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -
flags +bitexact -sws_flags +accurate_rnd+bitexact -
vf stereo3d=sbsl:al
FATE_STEREO3D += fate-filter-stereo3d-sbsl-sbsr
fate-filter-stereo3d-sbsl-sbsr: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -vf stereo3d=sbsl:sbsr
fate-filter-stereo3d-sbsl-sbsr: CMD = framecrc -c:v pgmyuv -i $(SRC) -vframes 5 -
flags +bitexact -sws_flags +accurate_rnd+bitexact -
vf stereo3d=sbsl:sbsr
FATE_FILTER_VSYNTH-$(CONFIG_STEREO3D_FILTER) += $(FATE_STEREO3D)
...
...
tests/ref/fate/filter-stereo3d-abr-ml
View file @
17b98c1a
#tb 0: 1/25
0, 0, 0, 1, 152064, 0x
34769690
0, 1, 1, 1, 152064, 0x
d97fce5a
0, 2, 2, 1, 152064, 0x
bccdc588
0, 3, 3, 1, 152064, 0x
cef0ee1f
0, 4, 4, 1, 152064, 0x
801c76e
8
0, 0, 0, 1, 152064, 0x
b787afe4
0, 1, 1, 1, 152064, 0x
21f0e774
0, 2, 2, 1, 152064, 0x
5704de73
0, 3, 3, 1, 152064, 0x
e80907da
0, 4, 4, 1, 152064, 0x
baed904
8
tests/ref/fate/filter-stereo3d-abr-mr
View file @
17b98c1a
#tb 0: 1/25
0, 0, 0, 1, 152064, 0x
68905a2e
0, 1, 1, 1, 152064, 0x
52e6c8f6
0, 2, 2, 1, 152064, 0x3
aae8670
0, 3, 3, 1, 152064, 0x
8e0b3a3b
0, 4, 4, 1, 152064, 0x
b52a6c9e
0, 0, 0, 1, 152064, 0x
3064732b
0, 1, 1, 1, 152064, 0x
c6cde2ab
0, 2, 2, 1, 152064, 0x3
c039f65
0, 3, 3, 1, 152064, 0x
bd3b53e0
0, 4, 4, 1, 152064, 0x
3ab585b6
tests/ref/fate/filter-stereo3d-al-sbsl
View file @
17b98c1a
#tb 0: 2/25
0, 0, 0, 1, 608256, 0x
09a9882
c
0, 1, 1, 1, 608256, 0x
a6747470
0, 2, 2, 1, 608256, 0x
8c69aeeb
0, 3, 3, 1, 608256, 0x
a9d7e92
e
0, 4, 4, 1, 608256, 0x
b1a875a5
0, 0, 0, 1, 608256, 0x
3b69ed4
c
0, 1, 1, 1, 608256, 0x
0e09d9a1
0, 2, 2, 1, 608256, 0x
2edb143c
0, 3, 3, 1, 608256, 0x
b5084f1
e
0, 4, 4, 1, 608256, 0x
8be7da2d
tests/ref/fate/filter-stereo3d-ar-abl
View file @
17b98c1a
#tb 0: 2/25
0, 0, 0, 1, 608256, 0x
925a882
c
0, 1, 1, 1, 608256, 0x
3ff67470
0, 2, 2, 1, 608256, 0x
5d1aaeeb
0, 3, 3, 1, 608256, 0x
7e9ee92
e
0, 4, 4, 1, 608256, 0x
368375a5
0, 0, 0, 1, 608256, 0x
3f2fed4
c
0, 1, 1, 1, 608256, 0x
c3c3d9a1
0, 2, 2, 1, 608256, 0x
80f5143c
0, 3, 3, 1, 608256, 0x
23004f1
e
0, 4, 4, 1, 608256, 0x
c596da2d
tests/ref/fate/filter-stereo3d-sbsl-abl
View file @
17b98c1a
#tb 0: 1/25
0, 0, 0, 1, 304128, 0x
0b37f0b
e
0, 1, 1, 1, 304128, 0x
c435975f
0, 2, 2, 1, 304128, 0x
6a3b4c0
7
0, 3, 3, 1, 304128, 0x
31ff2869
0, 4, 4, 1, 304128, 0x
b57ee386
0, 0, 0, 1, 304128, 0x
4213231
e
0, 1, 1, 1, 304128, 0x
fd78ca2e
0, 2, 2, 1, 304128, 0x
bd197de
7
0, 3, 3, 1, 304128, 0x
1e935bba
0, 4, 4, 1, 304128, 0x
45b1160d
tests/ref/fate/filter-stereo3d-sbsl-abr
View file @
17b98c1a
#tb 0: 1/25
0, 0, 0, 1, 304128, 0x
b8c2f0b
e
0, 1, 1, 1, 304128, 0x
913d975f
0, 2, 2, 1, 304128, 0x
d5174c0
7
0, 3, 3, 1, 304128, 0x
d7932869
0, 4, 4, 1, 304128, 0xb
e9be386
0, 0, 0, 1, 304128, 0x
5ac6231
e
0, 1, 1, 1, 304128, 0x
4ea3ca2e
0, 2, 2, 1, 304128, 0x
1b717de
7
0, 3, 3, 1, 304128, 0x
f9e75bba
0, 4, 4, 1, 304128, 0xb
3b3160d
tests/ref/fate/filter-stereo3d-sbsl-al
View file @
17b98c1a
#tb 0: 1/50
0, 0, 0, 1, 152064, 0x
41d6c6b
9
0, 1, 1, 1, 152064, 0x
4f9a2a05
0, 2, 2, 1, 152064, 0x
e6a6c4e4
0, 3, 3, 1, 152064, 0x
4a0fd26c
0, 4, 4, 1, 152064, 0x
28cc1830
0, 0, 0, 1, 152064, 0x
269fdfa
9
0, 1, 1, 1, 152064, 0x
fbea4366
0, 2, 2, 1, 152064, 0x
c957dddc
0, 3, 3, 1, 152064, 0x
f3dcec43
0, 4, 4, 1, 152064, 0x
0b5d30a2
tests/ref/fate/filter-stereo3d-sbsl-sbsr
View file @
17b98c1a
#tb 0: 1/25
0, 0, 0, 1, 304128, 0x
e722f0b
e
0, 1, 1, 1, 304128, 0x
2935975f
0, 2, 2, 1, 304128, 0x
d3ce4c0
7
0, 3, 3, 1, 304128, 0x
475b2869
0, 4, 4, 1, 304128, 0x
f43ce386
0, 0, 0, 1, 304128, 0x
341f231
e
0, 1, 1, 1, 304128, 0x
6230ca2e
0, 2, 2, 1, 304128, 0x
364e7de
7
0, 3, 3, 1, 304128, 0x
d8305bba
0, 4, 4, 1, 304128, 0x
db0a160d
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