vl: remove assert on unknown video profile

It's perfectly valid to ask for an unknown
profile and get unknown code as a result.

Signed-off-by: Christian König <deathsimple@vodafone.de>
This commit is contained in:
Christian König 2012-02-01 12:37:44 +01:00
parent 14f47d164d
commit 3ac959492d
1 changed files with 0 additions and 1 deletions

View File

@ -64,7 +64,6 @@ u_reduce_video_profile(enum pipe_video_profile profile)
return PIPE_VIDEO_CODEC_MPEG4_AVC;
default:
assert(0);
return PIPE_VIDEO_CODEC_UNKNOWN;
}
}