diff options
author | Christian König <[email protected]> | 2013-07-15 09:16:22 -0600 |
---|---|---|
committer | Christian König <[email protected]> | 2014-02-11 13:26:13 +0100 |
commit | ee978aee94d98fec669002eb5ef7ceb1f46683a9 (patch) | |
tree | a60768c696b3f23ce696a43da44d51012e60db34 /src/gallium/auxiliary/vl | |
parent | eaf3358e0a1323ed417b6875e70fdcdc30ed97e0 (diff) |
vl: add H264 encoding interface
Signed-off-by: Christian König <[email protected]>
Signed-off-by: Leo Liu <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/vl')
-rw-r--r-- | src/gallium/auxiliary/vl/vl_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/vl/vl_decoder.c b/src/gallium/auxiliary/vl/vl_decoder.c index fc010670568..97e549d6a50 100644 --- a/src/gallium/auxiliary/vl/vl_decoder.c +++ b/src/gallium/auxiliary/vl/vl_decoder.c @@ -39,7 +39,7 @@ vl_profile_supported(struct pipe_screen *screen, enum pipe_video_profile profile assert(screen); switch (u_reduce_video_profile(profile)) { case PIPE_VIDEO_FORMAT_MPEG12: - return true; + return entrypoint != PIPE_VIDEO_ENTRYPOINT_ENCODE; default: return false; } |