summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
diff options
context:
space:
mode:
authorChristian König <[email protected]>2011-04-02 19:50:37 +0200
committerChristian König <[email protected]>2011-04-02 19:50:37 +0200
commit71ee815b5cb0612906f9400f9a06ce8b7cdd51b3 (patch)
treeb288fce5ca749f54b9cd44fed3f21e44966531df /src/gallium/drivers
parent794cde3f5ef59cf603be284fbc8de33d2cda7d2c (diff)
[g3dvl] remove PIPE_CAP_DECODE_TARGET_PREFERRED_FORMAT
It wasn't fully implemented anyway.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r--src/gallium/drivers/nv40/nv40_video_context.c3
-rw-r--r--src/gallium/drivers/nvfx/nvfx_video_context.c3
-rw-r--r--src/gallium/drivers/r600/r600_video_context.c3
-rw-r--r--src/gallium/drivers/softpipe/sp_screen.c3
4 files changed, 4 insertions, 8 deletions
diff --git a/src/gallium/drivers/nv40/nv40_video_context.c b/src/gallium/drivers/nv40/nv40_video_context.c
index 35395e848fc..34bb7cdbdda 100644
--- a/src/gallium/drivers/nv40/nv40_video_context.c
+++ b/src/gallium/drivers/nv40/nv40_video_context.c
@@ -47,8 +47,7 @@ nv40_video_create(struct pipe_screen *screen, enum pipe_video_profile profile,
return vl_create_mpeg12_context(pipe, profile,
chroma_format,
width, height,
- true,
- PIPE_FORMAT_XYUV);
+ true);
default:
return NULL;
}
diff --git a/src/gallium/drivers/nvfx/nvfx_video_context.c b/src/gallium/drivers/nvfx/nvfx_video_context.c
index 0456926c9ad..01a84f2ebc6 100644
--- a/src/gallium/drivers/nvfx/nvfx_video_context.c
+++ b/src/gallium/drivers/nvfx/nvfx_video_context.c
@@ -47,8 +47,7 @@ nvfx_video_create(struct pipe_screen *screen, enum pipe_video_profile profile,
return vl_create_mpeg12_context(pipe, profile,
chroma_format,
width, height,
- true,
- PIPE_FORMAT_XYUV);
+ true);
default:
return NULL;
}
diff --git a/src/gallium/drivers/r600/r600_video_context.c b/src/gallium/drivers/r600/r600_video_context.c
index 8190c9ae612..c1b0c098245 100644
--- a/src/gallium/drivers/r600/r600_video_context.c
+++ b/src/gallium/drivers/r600/r600_video_context.c
@@ -47,8 +47,7 @@ r600_video_create(struct pipe_screen *screen, enum pipe_video_profile profile,
return vl_create_mpeg12_context(pipe, profile,
chroma_format,
width, height,
- false,
- PIPE_FORMAT_XYUV);
+ false);
default:
return NULL;
}
diff --git a/src/gallium/drivers/softpipe/sp_screen.c b/src/gallium/drivers/softpipe/sp_screen.c
index 26f5e1b5740..d5936641ba5 100644
--- a/src/gallium/drivers/softpipe/sp_screen.c
+++ b/src/gallium/drivers/softpipe/sp_screen.c
@@ -307,8 +307,7 @@ sp_video_create(struct pipe_screen *screen, enum pipe_video_profile profile,
return vl_create_mpeg12_context(pipe, profile,
chroma_format,
width, height,
- true,
- PIPE_FORMAT_XYUV);
+ true);
default:
return NULL;
}