Speed up encryption/decryption?

后端 未结 5 1603
后悔当初
后悔当初 2020-12-09 14:20

I have an encryption and decryption code which I use to encrypt and decrypt video files (mp4). I\'m trying to speed up the decryption process as the encryption one is not th

5条回答
  •  情书的邮戳
    2020-12-09 14:31

    I suggest you use the profiling tool provided in the android sdk. it will tell you where you spend the most time (i.e. : file writing or decoding).

    see http://developer.android.com/guide/developing/debugging/debugging-tracing.html

    This work on the emulator as well as on an actual device.

提交回复
热议问题