Changeset 28167


Ignore:
Timestamp:
03/31/14 17:57:32 (10 years ago)
Author:
gost
Message:

[titan] mipsel... fix ff and fr when ts playing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • titan/titan/player.h

    r25693 r28167  
    418418void playerffts(int speed)
    419419{
     420#ifdef MIPSEL
     421        audiostop(status.aktservice->audiodev);
     422        videoslowmotion(status.aktservice->videodev, 0);
    420423        videofastforward(status.aktservice->videodev, speed);
     424        videocontinue(status.aktservice->videodev);
     425#else   
     426        videofastforward(status.aktservice->videodev, speed);
     427#endif
    421428}
    422429
    423430void playerslowts(int speed)
    424431{
     432#ifdef MIPSEL
     433        audiostop(status.aktservice->audiodev);
    425434        videoslowmotion(status.aktservice->videodev, speed);
     435        videofastforward(status.aktservice->videodev, 0);
     436        videocontinue(status.aktservice->videodev);
     437#else           
     438        videoslowmotion(status.aktservice->videodev, speed);
     439#endif
    426440}
    427441
     
    438452        }
    439453        speed *= -1;
     454#ifdef MIPSEL
     455        audiostop(status.aktservice->audiodev);
     456        videoslowmotion(status.aktservice->videodev, 0);
    440457        videofastforward(status.aktservice->videodev, speed);
     458        videocontinue(status.aktservice->videodev);
     459#else   
     460        videofastforward(status.aktservice->videodev, speed);
     461#endif
    441462}
    442463       
Note: See TracChangeset for help on using the changeset viewer.