diff options
author | Maarten Lankhorst <[email protected]> | 2014-09-10 17:06:34 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-09-16 22:08:48 +0100 |
commit | a4d4ab929e23af688514ff51381da75a3ea667c0 (patch) | |
tree | 44f6bab02a760a6f3efdea666ca13ce6635a6983 | |
parent | 2b43d485096a254f5a042663cda50a072e9c3da0 (diff) |
nouveau: remove unneeded assert
No idea why it was added, but the code runs fine even on videos
where it triggers.
Signed-off-by: Maarten Lankhorst <[email protected]>
Cc: "10.2 10.3" <[email protected]>
(cherry picked from commit 8ab85bfcd5ddd44c50e5b384222731cb2a1a1496)
-rw-r--r-- | src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c b/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c index edbc82b8dc8..25283b79952 100644 --- a/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c +++ b/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c @@ -271,7 +271,6 @@ nouveau_vp3_fill_picparm_mpeg4_vp(struct nouveau_vp3_decoder *dec, { struct mpeg4_picparm_vp pic_vp_stub = {}, *pic_vp = &pic_vp_stub; uint32_t ring, ret = 0x01014; // !async_shutdown << 16 | watchdog << 12 | irq_record << 4 | unk; - assert(!(dec->base.width & 0xf)); *is_ref = desc->vop_coding_type <= 1; pic_vp->width = dec->base.width; |