summaryrefslogtreecommitdiffstats
path: root/sanitize-tarball.sh
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2013-12-05 10:24:55 +0400
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2013-12-05 10:24:55 +0400
commitf5c756cfd11b6f27439f8f945e1e40f82276581e (patch)
tree68abb5f8953df9a3580dd86e3176246251c5b9c6 /sanitize-tarball.sh
parentfee912ca116cc902cfbde9d08396f5d38c09fdc6 (diff)
downloadmesa-f5c756cfd11b6f27439f8f945e1e40f82276581e.tar.gz
mesa-f5c756cfd11b6f27439f8f945e1e40f82276581e.tar.xz
mesa-f5c756cfd11b6f27439f8f945e1e40f82276581e.zip
Revert "Mesa 10.0 release branch git snapshot"
This reverts commit fee912ca116cc902cfbde9d08396f5d38c09fdc6. Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'sanitize-tarball.sh')
-rwxr-xr-xsanitize-tarball.sh22
1 files changed, 15 insertions, 7 deletions
diff --git a/sanitize-tarball.sh b/sanitize-tarball.sh
index ecaa861..54b2d0c 100755
--- a/sanitize-tarball.sh
+++ b/sanitize-tarball.sh
@@ -20,9 +20,14 @@ pushd $dirname
cat > src/gallium/auxiliary/vl/vl_mpeg12_decoder.c << EOF
#include "vl_mpeg12_decoder.h"
-struct pipe_video_codec *
-vl_create_mpeg12_decoder(struct pipe_context *pipe,
- const struct pipe_video_codec *templat)
+struct pipe_video_decoder *
+vl_create_mpeg12_decoder(struct pipe_context *context,
+ enum pipe_video_profile profile,
+ enum pipe_video_entrypoint entrypoint,
+ enum pipe_video_chroma_format chroma_format,
+ unsigned width, unsigned height,
+ unsigned max_references,
+ bool expect_chunked_decode)
{
return NULL;
}
@@ -31,14 +36,17 @@ EOF
cat > src/gallium/auxiliary/vl/vl_decoder.c << EOF
#include "vl_decoder.h"
bool vl_profile_supported(struct pipe_screen *screen,
- enum pipe_video_profile profile,
- enum pipe_video_entrypoint entrypoint)
+ enum pipe_video_profile profile)
{
return false;
}
-struct pipe_video_codec *
+struct pipe_video_decoder *
vl_create_decoder(struct pipe_context *pipe,
- const struct pipe_video_codec *templat)
+ enum pipe_video_profile profile,
+ enum pipe_video_entrypoint entrypoint,
+ enum pipe_video_chroma_format chroma_format,
+ unsigned width, unsigned height, unsigned max_references,
+ bool expect_chunked_decode)
{
return NULL;
}