remove assertion that use external definitions

Originally committed as revision 17241 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ivan Kalvachev 2009-02-14 16:53:42 +00:00
parent 1aa7abb281
commit ef1b5ae2cd
1 changed files with 0 additions and 2 deletions

View File

@ -93,7 +93,6 @@ int XVMC_field_start(MpegEncContext*s, AVCodecContext *avctx)
case FF_B_TYPE:
next = (struct xvmc_render_state*)s->next_picture.data[2];
assert(next!=NULL);
assert(next->state & MP_XVMC_STATE_PREDICTION);
if (next == NULL)
return -1;
if (next->magic != MP_XVMC_RENDER_MAGIC)
@ -106,7 +105,6 @@ int XVMC_field_start(MpegEncContext*s, AVCodecContext *avctx)
last = render;//predict second field from the first
if (last->magic != MP_XVMC_RENDER_MAGIC)
return -1;
assert(last->state & MP_XVMC_STATE_PREDICTION);
render->p_past_surface = last->p_surface;
return 0;
}