diff --git a/libeplayer3-arm/playback/playback.c b/libeplayer3-arm/playback/playback.c index c17b998..908716f 100644 --- a/libeplayer3-arm/playback/playback.c +++ b/libeplayer3-arm/playback/playback.c @@ -301,7 +301,7 @@ static int PlaybackPlay(Context_t *context) context->playback->SlowMotion = 0; context->playback->Speed = 0; if (context->container && context->container->selectedContainer); - context->container->selectedContainer->Command(context, CONTAINER_STOP, NULL); + ret = context->container->selectedContainer->Command(context, CONTAINER_STOP, NULL); } else { @@ -333,7 +333,7 @@ static int PlaybackPlay(Context_t *context) context->playback->isCreationPhase = 0; // allow thread to go into next state if (context->container && context->container->selectedContainer); - context->container->selectedContainer->Command(context, CONTAINER_PLAY, NULL); + ret = context->container->selectedContainer->Command(context, CONTAINER_PLAY, NULL); if (ret != 0) { playback_err("CONTAINER_PLAY failed!\n");