diff options
author | Maarten Lankhorst <[email protected]> | 2014-09-10 17:06:34 +0200 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-09-11 23:18:07 -0400 |
commit | 8ab85bfcd5ddd44c50e5b384222731cb2a1a1496 (patch) | |
tree | 139076f464dbc49b8a1c9bc626ea7a06288d5c2f /src | |
parent | a41aad843108cec1901c88a76d5ceb4ede2e062b (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]>
Diffstat (limited to 'src')
-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; |