emotion/generic: Reset initial values on file_set.

These values need to be reset as soon as a new file is set, otherwise
they can give wrong information to evas about the size of pixels to
render.

SVN revision: 63205
This commit is contained in:
Rafael Antognolli 2011-09-05 16:07:06 +00:00
parent 10621a8c15
commit 93b310e15c
1 changed files with 5 additions and 5 deletions

View File

@ -198,11 +198,6 @@ static void
_file_open(Emotion_Generic_Video *ev)
{
INF("Opening file: %s", ev->filename);
ev->w = DEFAULTWIDTH;
ev->h = DEFAULTHEIGHT;
ev->ratio = (double)DEFAULTWIDTH / DEFAULTHEIGHT;
ev->speed = 1.0;
ev->len = 0;
ev->drop = 0;
if (!ev->ready)
@ -780,6 +775,11 @@ em_file_open(const char *file, Evas_Object *obj __UNUSED__, void *data)
eina_stringshare_replace(&ev->filename, file);
ev->pos = 0;
ev->w = 0;
ev->h = 0;
ev->ratio = 1;
ev->speed = 1.0;
ev->len = 0;
if (ev->ready && ev->opening)
{