Menu

Getting <s> and </s> as an output from android pocketsphinx

Help
2016-10-17
2016-10-17
  • Randall Castillo

    We're using pocketsphinx to help us convert .wav files into text files. We don't know why it gives us a strange output as it gives us only <s> and </s> after the conversion. We're using the default dictionary, langauge model and acoustic model given by the cmusphinx community.

    Here is the code we're using for the conversion:

    package com.example.saling_wika.saling_wika;
    
    import android.app.Activity;
    import android.net.Uri;
    import android.os.AsyncTask;
    import android.os.Bundle;
    import android.os.Environment;
    import android.util.Log;
    import android.widget.Toast;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.nio.ByteBuffer;
    import java.nio.ByteOrder;
    
    import edu.cmu.pocketsphinx.Assets;
    import edu.cmu.pocketsphinx.Config;
    import edu.cmu.pocketsphinx.Decoder;
    import edu.cmu.pocketsphinx.Segment;
    
    import static android.support.v7.widget.StaggeredGridLayoutManager.TAG;
    import static junit.framework.Assert.fail;
    
    public class ConversionModule extends Activity {
        static {
            System.loadLibrary("pocketsphinx_jni");
        }
        Config c;
        Decoder ps;
        FileInputStream stream;
    
        @Override
        public void onCreate(Bundle state) {
            super.onCreate(state);
            setContentView(R.layout.main);
    
            c = Decoder.defaultConfig();
    
        /*Configuring decoder object*/
            c.setString("-hmm", new File(Environment.getExternalStorageDirectory() + "/Android/data/com.example.saling_wika.saling_wika/files/sync", "en-us-ptm").getPath());
            c.setString("-dict", new File(Environment.getExternalStorageDirectory() + "/Android/data/com.example.saling_wika.saling_wika/files/sync", "cmudict-en-us.dict").getPath());
            c.setString("-lm", new File(Environment.getExternalStorageDirectory() + "/Android/data/com.example.saling_wika.saling_wika/files/sync", "weather.dmp").getPath());
            c.setBoolean("-allphone_ci", true);
    
            ps = new Decoder(c);
    
            try {
                final File file = new File(AudioToConvert.pathko);
                Uri uri = Uri.fromFile(file);
                File auxFile = new File(uri.getPath());
                stream = new FileInputStream(auxFile);
    
            } catch (FileNotFoundException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
    
            ps.startUtt();
            byte[] b = new byte[4096];
            try {
                int nbytes;
                while ((nbytes = stream.read(b)) >= 0) {
                    ByteBuffer bb = ByteBuffer.wrap(b, 0, nbytes);
                    short[] s = new short[nbytes / 2];
                    bb.asShortBuffer().get(s);
                    ps.processRaw(s, nbytes / 2, false, false);
                }
            } catch (IOException e) {
    
            }
            ps.endUtt();
            //  System.out.println(ps.hyp().getHypstr());
            Toast.makeText(getApplicationContext(), ps.hyp().getHypstr(), Toast.LENGTH_LONG).show();
            for (Segment seg : ps.seg()) {
                //  System.out.println(seg.getWord());
                Toast.makeText(getApplicationContext(),seg.getWord(), Toast.LENGTH_LONG).show();
            }
            ;
    
        }
    }
    

    And here is the logcat when we execute the conversion process:

    10-17 16:27:27.637 6856-6856/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 16:27:27.637 6856-6856/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60a68538) (w:720 h:1280 f:1)
    10-17 16:27:27.637 6856-6856/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61c8a518) (w:720 h:1280 f:1)
    10-17 16:27:27.638 6856-6856/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x6092b760) (w:720 h:1280 f:1)
    10-17 16:27:27.639 6856-6856/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60906828) (w:720 h:1280 f:1)
    10-17 16:27:27.957 6856-6856/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 16:27:27.961 6856-6856/com.example.saling_wika.saling_wika D/ActivityThread: ACT-DESTROY_ACTIVITY handled : 1 / android.os.BinderProxy@42317988
    10-17 16:27:28.667 6856-6856/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.Button{422e1a98 VFED..C. ........ 60,1034-660,1130 #7f0c0079 app:id/ConvertButton}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=124.74342, y[0]=33.127197, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=237734, downTime=237734, deviceId=3, source=0x1002 }
    10-17 16:27:28.688 6856-6856/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60906828) (w:720, h:1280, f:1)
    10-17 16:27:28.691 6856-6856/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61cc9aa0>
    10-17 16:27:28.692 6856-6856/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61cc9aa0>
    10-17 16:27:28.718 6856-6856/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.widget.Button{422e1a98 VFED..C. ...P.... 60,1034-660,1130 #7f0c0079 app:id/ConvertButton}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=124.74342, y[0]=32.12805, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=237785, downTime=237734, deviceId=3, source=0x1002 }
    10-17 16:27:28.719 6856-6856/com.example.saling_wika.saling_wika V/Provider/Settings:  from settings cache , name = sound_effects_enabled , value = 0
    10-17 16:27:28.841 6856-6856/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x6092b760) (w:720, h:1280, f:1)
    10-17 16:27:28.843 6856-6856/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61cc9aa0>
    10-17 16:27:28.844 6856-6856/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61cc9aa0>
    10-17 16:27:28.847 6856-6856/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{422b1a30 token=android.os.BinderProxy@422b1018 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 16:27:28.853 6856-6856/com.example.saling_wika.saling_wika D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@422b1018
    10-17 16:27:28.856 6856-6856/com.example.saling_wika.saling_wika D/dalvikvm: Trying to load lib /data/app-lib/com.example.saling_wika.saling_wika-2/libpocketsphinx_jni.so 0x42183488
    10-17 16:27:28.859 6856-6856/com.example.saling_wika.saling_wika D/dalvikvm: Added shared lib /data/app-lib/com.example.saling_wika.saling_wika-2/libpocketsphinx_jni.so 0x42183488
    10-17 16:27:28.859 6856-6856/com.example.saling_wika.saling_wika D/dalvikvm: No JNI_OnLoad found in /data/app-lib/com.example.saling_wika.saling_wika-2/libpocketsphinx_jni.so 0x42183488, skipping init
    10-17 16:27:28.897 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: pocketsphinx.c(152): Parsed model-specific feature parameters from /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/feat.params
    10-17 16:27:28.932 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: feat.c(715): Initializing feature stream to type: '1s_c_d_dd', ceplen=13, CMN='current', VARNORM='no', AGC='none'
    10-17 16:27:28.932 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn.c(143): mean[0]= 12.00, mean[1..12]= 0.0
    10-17 16:27:28.932 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: acmod.c(164): Using subvector specification 0-12/13-25/26-38
    10-17 16:27:28.932 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: mdef.c(518): Reading model definition: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/mdef
    10-17 16:27:28.933 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: mdef.c(531): Found byte-order mark BMDF, assuming this is a binary mdef file
    10-17 16:27:28.933 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: bin_mdef.c(336): Reading binary model definition: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/mdef
    10-17 16:27:29.007 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: bin_mdef.c(516): 42 CI-phone, 137053 CD-phone, 3 emitstate/phone, 126 CI-sen, 5126 Sen, 29324 Sen-Seq
    10-17 16:27:29.007 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: tmat.c(206): Reading HMM transition probability matrices: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/transition_matrices
    10-17 16:27:29.008 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: acmod.c(117): Attempting to use PTM computation module
    10-17 16:27:29.018 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/means
    10-17 16:27:29.044 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(292): 42 codebook, 3 feature, size: 
    10-17 16:27:29.044 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:27:29.044 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:27:29.044 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:27:29.044 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/variances
    10-17 16:27:29.068 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(292): 42 codebook, 3 feature, size: 
    10-17 16:27:29.068 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:27:29.068 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:27:29.068 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:27:29.127 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(354): 222 variance values floored
    10-17 16:27:29.127 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(476): Loading senones from dump file /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/sendump
    10-17 16:27:29.128 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(500): BEGIN FILE FORMAT DESCRIPTION
    10-17 16:27:29.128 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(563): Rows: 128, Columns: 5126
    10-17 16:27:29.128 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(595): Using memory-mapped I/O for senones
    10-17 16:27:29.128 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(835): Maximum top-N: 4
    10-17 16:27:29.129 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: phone_loop_search.c(114): State beam -225 Phone exit beam -225 Insertion penalty 0
    10-17 16:27:29.251 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(320): Allocating 137531 * 20 bytes (2686 KiB) for word entries
    10-17 16:27:29.251 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(333): Reading main dictionary: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/cmudict-en-us.dict
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133422: Failed to add the word 'ay' (duplicate?); ignored
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133423: Failed to add the word 'ay(2)' (duplicate?); ignored
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133425: Failed to add the word 'kayo' (duplicate?); ignored
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133427: Failed to add the word 'randall' (duplicate?); ignored
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133428: Failed to add the word 'si' (duplicate?); ignored
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(213): Allocated 1007 KiB for strings, 1662 KiB for phones
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(336): 133424 words read
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(358): Reading filler dictionary: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/noisedict
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(213): Allocated 0 KiB for strings, 0 KiB for phones
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(361): 5 words read
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(396): Building PID tables for dictionary
    10-17 16:27:29.949 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(406): Allocating 42^3 * 2 bytes (144 KiB) for word-initial triphones
    10-17 16:27:30.056 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(132): Allocated 21336 bytes (20 KiB) for word-final triphones
    10-17 16:27:30.062 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(196): Allocated 21336 bytes (20 KiB) for single-phone word triphones
    10-17 16:27:30.062 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(456): Trying to read LM in trie binary format
    10-17 16:27:30.063 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(467): Header doesn't match
    10-17 16:27:30.063 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(189): Trying to read LM in arpa format
    10-17 16:27:30.071 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(70): No \data\ mark in LM file
    10-17 16:27:30.071 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(548): Trying to read LM in DMP format
    10-17 16:27:30.072 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(630): ngrams 1=779, 2=14416, 3=46976
    10-17 16:27:30.262 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: lm_trie.c(399): Training quantizer
    10-17 16:27:30.323 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: lm_trie.c(407): Building LM trie
    10-17 16:27:31.841 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(99): 788 unique initial diphones
    10-17 16:27:31.847 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(148): 0 root, 0 non-root channels, 54 single-phone words
    10-17 16:27:31.847 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(186): Creating search tree
    10-17 16:27:31.849 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(192): before: 0 root, 0 non-root channels, 54 single-phone words
    10-17 16:27:31.898 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(326): after: max nonroot chan increased to 2220
    10-17 16:27:31.899 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(339): after: 256 root, 2092 non-root channels, 9 single-phone words
    10-17 16:27:31.899 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(157): fwdflat: min_ef_width = 4, max_sf_win = 25
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn_prior.c(131): cmn_prior_update: from < 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: 40.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: 10.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: 10.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: >
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn_prior.c(149): cmn_prior_update: to   < 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: 96.98 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -21.30 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -5.46 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -4.70 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -2.18 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -6.81 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -1.02 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -1.90 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -2.46 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.68 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -0.36 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx:  0.98 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -0.06 
    10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: >
    10-17 16:27:32.186 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1553):      155 words recognized (5/fr)
    10-17 16:27:32.186 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1555):    45661 senones evaluated (1427/fr)
    10-17 16:27:32.186 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1559):    23946 channels searched (748/fr), 7168 1st, 2025 last
    10-17 16:27:32.186 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1562):      286 words for which last channels evaluated (8/fr)
    10-17 16:27:32.187 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1564):     1346 candidate words for entering last phone (42/fr)
    10-17 16:27:32.187 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1567): fwdtree 0.21 CPU 0.656 xRT
    10-17 16:27:32.187 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1570): fwdtree 0.29 wall 0.896 xRT
    10-17 16:27:32.187 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 2 words
    10-17 16:27:32.207 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(948):      109 words recognized (3/fr)
    10-17 16:27:32.207 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(950):      261 senones evaluated (8/fr)
    10-17 16:27:32.207 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(952):      143 channels searched (4/fr)
    10-17 16:27:32.207 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(954):      143 words searched (4/fr)
    10-17 16:27:32.207 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(957):       57 word transitions (1/fr)
    10-17 16:27:32.207 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(960): fwdflat 0.02 CPU 0.063 xRT
    10-17 16:27:32.207 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(963): fwdflat 0.02 wall 0.064 xRT
    10-17 16:27:32.208 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1253): lattice start node <s>.0 end node </s>.22
    10-17 16:27:32.208 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1279): Eliminated 2 nodes before end node
    10-17 16:27:32.208 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1384): Lattice has 40 nodes, 35 links
    10-17 16:27:32.208 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ps_lattice.c(1380): Bestpath score: -935
    10-17 16:27:32.208 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ps_lattice.c(1384): Normalizer P(O) = alpha(</s>:22:30) = -64758
    10-17 16:27:32.208 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ps_lattice.c(1441): Joint P(O,S) = -70673 P(S|O) = -5915
    10-17 16:27:32.208 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(875): bestpath 0.00 CPU 0.000 xRT
    10-17 16:27:32.208 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(878): bestpath 0.00 wall 0.001 xRT
    10-17 16:27:32.214 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1030): bestpath 0.00 CPU 0.000 xRT
    10-17 16:27:32.214 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1033): bestpath 0.00 wall 0.000 xRT
    10-17 16:27:32.222 6856-6856/com.example.saling_wika.saling_wika 
    
     

    Last edit: Nickolay V. Shmyrev 2016-10-17
  • Randall Castillo

    We've included the code you gave, but unfortunately the result is still the same.

     
    • Nickolay V. Shmyrev

      You need to provide an updated log then. The important piece is

      10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn_prior.c(149): cmn_prior_update: to   < 
      10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: 96.98 
      10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -21.30 
      10-17 16:27:32.139 6856-6856/com.example.saling_wika.saling_wika I/cmusphinx: -5.46 
      

      With proper byorder CMN estimate should be less than 60.

       
  • Randall Castillo

    This is the updated logcat we've got after we executed the newly updated conversion process:

    10-17 16:59:24.213 15341-15341/? D/dalvikvm: Zygote::ForkAndSpecialize : 0
    10-17 16:59:24.214 15341-15341/? D/dalvikvm: zygote get new systemTid : 15341
    10-17 16:59:24.215 15341-15341/? D/dalvikvm: Late-enabling CheckJNI
    10-17 16:59:24.215 15341-15344/? D/dalvikvm: threadid=2: interp stack at 0x5bac8000
    10-17 16:59:24.219 15341-15346/? D/dalvikvm: threadid=3: interp stack at 0x5bc0a000
    10-17 16:59:24.219 15341-15346/? D/dalvikvm: Elevating priority from 0 to -8
    10-17 16:59:24.219 15341-15341/? D/jdwp: prepping for JDWP over ADB
    10-17 16:59:24.220 15341-15348/? D/dalvikvm: threadid=4: interp stack at 0x5f330000
    10-17 16:59:24.220 15341-15348/? D/jdwp: JDWP: thread running
    10-17 16:59:24.223 15341-15348/? D/jdwp: trying to receive file descriptor from ADB
    10-17 16:59:24.223 15341-15349/? D/dalvikvm: threadid=5: interp stack at 0x5f44e000
    10-17 16:59:24.224 15341-15341/? D/dalvikvm: zygote get thread init done
    10-17 16:59:24.224 15341-15341/? D/dalvikvm: create interp thread : stack size=128KB
    10-17 16:59:24.224 15341-15341/? D/dalvikvm: create new thread
    10-17 16:59:24.224 15341-15341/? D/dalvikvm: new thread created
    10-17 16:59:24.224 15341-15341/? D/dalvikvm: update thread list
    10-17 16:59:24.224 15341-15350/? D/dalvikvm: threadid=6: interp stack at 0x5f46e000
    10-17 16:59:24.224 15341-15350/? D/dalvikvm: threadid=6: created from interp
    10-17 16:59:24.224 15341-15341/? D/dalvikvm: start new thread
    10-17 16:59:24.224 15341-15350/? D/dalvikvm: threadid=6: notify debugger
    10-17 16:59:24.224 15341-15350/? D/dalvikvm: threadid=6 (ReferenceQueueDaemon): calling run()
    10-17 16:59:24.224 15341-15341/? D/dalvikvm: create interp thread : stack size=128KB
    10-17 16:59:24.224 15341-15341/? D/dalvikvm: create new thread
    10-17 16:59:24.225 15341-15341/? D/dalvikvm: new thread created
    10-17 16:59:24.225 15341-15341/? D/dalvikvm: update thread list
    10-17 16:59:24.225 15341-15351/? D/dalvikvm: threadid=7: interp stack at 0x5f58c000
    10-17 16:59:24.225 15341-15351/? D/dalvikvm: threadid=7: created from interp
    10-17 16:59:24.225 15341-15341/? D/dalvikvm: start new thread
    10-17 16:59:24.225 15341-15341/? D/dalvikvm: create interp thread : stack size=128KB
    10-17 16:59:24.225 15341-15341/? D/dalvikvm: create new thread
    10-17 16:59:24.225 15341-15341/? D/dalvikvm: new thread created
    10-17 16:59:24.225 15341-15341/? D/dalvikvm: update thread list
    10-17 16:59:24.225 15341-15352/? D/dalvikvm: threadid=8: interp stack at 0x5f6aa000
    10-17 16:59:24.225 15341-15352/? D/dalvikvm: threadid=8: created from interp
    10-17 16:59:24.225 15341-15341/? D/dalvikvm: start new thread
    10-17 16:59:24.225 15341-15352/? D/dalvikvm: threadid=8: notify debugger
    10-17 16:59:24.225 15341-15352/? D/dalvikvm: threadid=8 (FinalizerWatchdogDaemon): calling run()
    10-17 16:59:24.225 15341-15351/? D/dalvikvm: threadid=7: notify debugger
    10-17 16:59:24.225 15341-15351/? D/dalvikvm: threadid=7 (FinalizerDaemon): calling run()
    10-17 16:59:24.230 15341-15348/? D/jdwp: received file descriptor 38 from ADB
    10-17 16:59:24.233 15341-15353/? D/dalvikvm: threadid=9: interp stack at 0x5fac4000
    10-17 16:59:24.240 15341-15354/? D/dalvikvm: threadid=10: interp stack at 0x5fbe2000
    10-17 16:59:24.282 15341-15341/com.example.saling_wika.saling_wika V/Provider/Settings: invalidate [system]: current 6 != cached 0
    10-17 16:59:24.283 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: hoder:android.app.IActivityManager$ContentProviderHolder@42186528,provider,holder.Provider:android.content.ContentProviderProxy@42186ca0
    10-17 16:59:24.284 15341-15341/com.example.saling_wika.saling_wika V/Provider/Settings: from db cache, name = anr_debugging_mechanism , value = 1
    10-17 16:59:24.286 15341-15341/com.example.saling_wika.saling_wika D/asset: AssetManager-->addDefaultAssets CIP path not exsit!
    10-17 16:59:24.298 15341-15341/com.example.saling_wika.saling_wika D/Proxy: setHttpRequestCheckHandler
    10-17 16:59:24.299 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: open_cached_dex_file : /data/app/com.example.saling_wika.saling_wika-1.apk /data/dalvik-cache/data@app@com.example.saling_wika.saling_wika-1.apk@classes.dex
    10-17 16:59:24.303 15341-15341/com.example.saling_wika.saling_wika I/InstantRun: Instant Run Runtime started. Android package is com.example.saling_wika.saling_wika, real application class is null.
    10-17 16:59:24.306 15341-15341/com.example.saling_wika.saling_wika W/InstantRun: No instant run dex files added to classpath
    10-17 16:59:24.314 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: create interp thread : stack size=128KB
    10-17 16:59:24.314 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: create new thread
    10-17 16:59:24.314 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: new thread created
    10-17 16:59:24.314 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: update thread list
    10-17 16:59:24.314 15341-15357/com.example.saling_wika.saling_wika D/dalvikvm: threadid=11: interp stack at 0x60005000
    10-17 16:59:24.314 15341-15357/com.example.saling_wika.saling_wika D/dalvikvm: threadid=11: created from interp
    10-17 16:59:24.314 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: start new thread
    10-17 16:59:24.315 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: BIND_APPLICATION handled : 0 / AppBindData{appInfo=ApplicationInfo{42183a78 com.example.saling_wika.saling_wika}}
    10-17 16:59:24.319 15341-15357/com.example.saling_wika.saling_wika D/dalvikvm: threadid=11: notify debugger
    10-17 16:59:24.319 15341-15357/com.example.saling_wika.saling_wika D/dalvikvm: threadid=11 (Thread-499): calling run()
    10-17 16:59:24.336 15341-15341/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.view.Window$Callback.onProvideKeyboardShortcuts, referenced from method android.support.v7.view.WindowCallbackWrapper.onProvideKeyboardShortcuts
    10-17 16:59:24.336 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve interface method 20379: Landroid/view/Window$Callback;.onProvideKeyboardShortcuts (Ljava/util/List;Landroid/view/Menu;I)V
    10-17 16:59:24.336 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    10-17 16:59:24.337 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to find class referenced in signature (Landroid/view/SearchEvent;)
    10-17 16:59:24.337 15341-15341/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.view.Window$Callback.onSearchRequested, referenced from method android.support.v7.view.WindowCallbackWrapper.onSearchRequested
    10-17 16:59:24.337 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve interface method 20381: Landroid/view/Window$Callback;.onSearchRequested (Landroid/view/SearchEvent;)Z
    10-17 16:59:24.337 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    10-17 16:59:24.337 15341-15341/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.view.Window$Callback.onWindowStartingActionMode, referenced from method android.support.v7.view.WindowCallbackWrapper.onWindowStartingActionMode
    10-17 16:59:24.337 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve interface method 20385: Landroid/view/Window$Callback;.onWindowStartingActionMode (Landroid/view/ActionMode$Callback;I)Landroid/view/ActionMode;
    10-17 16:59:24.337 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    10-17 16:59:24.338 15341-15341/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.res.TypedArray.getChangingConfigurations, referenced from method android.support.v7.widget.TintTypedArray.getChangingConfigurations
    10-17 16:59:24.338 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 817: Landroid/content/res/TypedArray;.getChangingConfigurations ()I
    10-17 16:59:24.338 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
    10-17 16:59:24.339 15341-15341/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.res.TypedArray.getType, referenced from method android.support.v7.widget.TintTypedArray.getType
    10-17 16:59:24.339 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 839: Landroid/content/res/TypedArray;.getType (I)I
    10-17 16:59:24.339 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0008
    10-17 16:59:24.424 15341-15341/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.res.Resources.getDrawable, referenced from method android.support.v7.widget.ResourcesWrapper.getDrawable
    10-17 16:59:24.424 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 780: Landroid/content/res/Resources;.getDrawable (ILandroid/content/res/Resources$Theme;)Landroid/graphics/drawable/Drawable;
    10-17 16:59:24.424 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
    10-17 16:59:24.425 15341-15341/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.res.Resources.getDrawableForDensity, referenced from method android.support.v7.widget.ResourcesWrapper.getDrawableForDensity
    10-17 16:59:24.425 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 782: Landroid/content/res/Resources;.getDrawableForDensity (IILandroid/content/res/Resources$Theme;)Landroid/graphics/drawable/Drawable;
    10-17 16:59:24.425 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
    10-17 16:59:24.433 15341-15341/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.Context.getColorStateList, referenced from method android.support.v7.content.res.AppCompatResources.getColorStateList
    10-17 16:59:24.433 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 522: Landroid/content/Context;.getColorStateList (I)Landroid/content/res/ColorStateList;
    10-17 16:59:24.433 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    10-17 16:59:24.477 15341-15341/com.example.saling_wika.saling_wika E/dalvikvm: Could not find class 'android.graphics.drawable.RippleDrawable', referenced from method android.support.v7.widget.AppCompatImageHelper.hasOverlappingRendering
    10-17 16:59:24.477 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve instanceof 169 (Landroid/graphics/drawable/RippleDrawable;) in Landroid/support/v7/widget/AppCompatImageHelper;
    10-17 16:59:24.477 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x20 at 0x000c
    10-17 16:59:24.504 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{42185428 token=android.os.BinderProxy@42184a10 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity}}
    10-17 16:59:24.505 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.impl.PhoneWindow$DecorView{421b2b60 I.E..... R.....ID 0,0-0,0}
    10-17 16:59:24.514 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{42219d50 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity,ident = 0}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{421b2b60 V.E..... R.....ID 0,0-0,0}
    10-17 16:59:24.514 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{42185428 token=android.os.BinderProxy@42184a10 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity}}
    10-17 16:59:24.578 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x601519d8) (w:720, h:1280, f:1)
    10-17 16:59:24.579 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 16:59:24.580 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 16:59:24.580 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 16:59:24.580 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x601519d8) (w:720 h:1280 f:1)
    10-17 16:59:24.586 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x601527d8) (w:720, h:1280, f:1)
    10-17 16:59:24.589 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: Enabling debug mode 0
    10-17 16:59:24.590 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60a42098) (w:768, h:768, f:1)
    10-17 16:59:24.593 15341-15341/com.example.saling_wika.saling_wika I/[MALI][Gralloc]: dlopen libsec_mem.so fail
    10-17 16:59:24.593 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x60152d60>
    10-17 16:59:24.613 15341-15341/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.support.v7.widget.LinearLayoutCompat.drawableHotspotChanged, referenced from method android.support.design.internal.ForegroundLinearLayout.drawableHotspotChanged
    10-17 16:59:24.613 15341-15341/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 16958: Landroid/support/v7/widget/LinearLayoutCompat;.drawableHotspotChanged (FF)V
    10-17 16:59:24.613 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6f at 0x0000
    10-17 16:59:24.679 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:24.682 15341-15368/com.example.saling_wika.saling_wika D/dalvikvm: threadid=12: interp stack at 0x60ec9000
    10-17 16:59:24.689 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:24.708 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: android.support.v4.widget.DrawerLayout{421c39a8 VFE..... .F....ID 0,0-720,1230 #7f0c0073 app:id/drawer_layout} softInputMode=288 first=true flags=#1810100
    10-17 16:59:24.708 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: android.support.v4.widget.DrawerLayout{421c39a8 VFE..... .F....ID 0,0-720,1230 #7f0c0073 app:id/drawer_layout} ic=null tba=android.view.inputmethod.EditorInfo@4226f7a8 controlFlags=#105
    10-17 16:59:24.715 15341-15369/com.example.saling_wika.saling_wika D/dalvikvm: threadid=13: interp stack at 0x61213000
    10-17 16:59:24.741 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60dc7d98) (w:720, h:1280, f:1)
    10-17 16:59:24.748 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:24.750 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:25.795 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: Couldn't open '/dev/touch' (Permission denied)
    10-17 16:59:25.795 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read x fail: Bad file number
    10-17 16:59:25.795 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read y fail: Bad file number
    10-17 16:59:25.795 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: Couldn't open '/dev/touch' (Permission denied)
    10-17 16:59:25.795 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read x fail: Bad file number
    10-17 16:59:25.795 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read y fail: Bad file number
    10-17 16:59:25.795 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: Couldn't open '/dev/touch' (Permission denied)
    10-17 16:59:25.795 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read x fail: Bad file number
    10-17 16:59:25.795 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read y fail: Bad file number
    10-17 16:59:25.796 15341-15341/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.ImageButton{4220daa0 VFED..C. ........ 0,0-112,112}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=53.925106, y[0]=41.928185, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2154861, downTime=2154861, deviceId=3, source=0x1002 }
    10-17 16:59:25.845 15341-15341/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.widget.ImageButton{4220daa0 VFED..C. ...p.... 0,0-112,112}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=53.925106, y[0]=41.928185, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2154912, downTime=2154861, deviceId=3, source=0x1002 }
    10-17 16:59:25.855 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60c86c78) (w:720, h:1280, f:1)
    10-17 16:59:25.857 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:25.859 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:25.863 15341-15341/com.example.saling_wika.saling_wika V/Provider/Settings: from db cache, name = sound_effects_enabled , value = 0
    10-17 16:59:25.874 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60c8a3c0) (w:720, h:1280, f:1)
    10-17 16:59:25.895 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:25.897 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:25.910 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:25.915 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:25.916 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: android.support.design.internal.NavigationMenuView{421ed1c8 VFED.V.. .F...... 0,0-560,1230 #7f0c0082 app:id/design_navigation_view} ic=null tba=android.view.inputmethod.EditorInfo@4229c620 controlFlags=#100
    10-17 16:59:25.921 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:25.923 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:25.930 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:25.932 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:25.947 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:25.949 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:25.968 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:25.973 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:25.985 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:25.988 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.003 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.011 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.021 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.023 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.039 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.041 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.059 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.061 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.076 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.078 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.095 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.097 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.113 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.115 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.131 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.134 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.150 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.152 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.168 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.170 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.186 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.188 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.205 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.207 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.223 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.225 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.241 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.243 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.260 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.262 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.277 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.279 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.295 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.297 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.822 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: Couldn't open '/dev/touch' (Permission denied)
    10-17 16:59:26.822 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read x fail: Bad file number
    10-17 16:59:26.822 15341-15341/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read y fail: Bad file number
    10-17 16:59:26.823 15341-15341/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.support.v7.widget.AppCompatCheckedTextView{422488a8 V.ED.... ........ 32,0-528,96 #7f0c0083 app:id/design_menu_item_text}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=255.60056, y[0]=52.432495, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2155888, downTime=2155888, deviceId=3, source=0x1002 }
    10-17 16:59:26.824 15341-15341/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.support.design.internal.NavigationMenuItemView{42248118 VFED..C. ........ 0,624-560,720}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=287.60056, y[0]=52.432495, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2155888, downTime=2155888, deviceId=3, source=0x1002 }
    10-17 16:59:26.898 15341-15341/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.support.design.internal.NavigationMenuItemView{42248118 VFED..C. ...p.... 0,624-560,720}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=287.60056, y[0]=52.432495, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2155965, downTime=2155888, deviceId=3, source=0x1002 }
    10-17 16:59:26.903 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:26.904 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:26.906 15341-15341/com.example.saling_wika.saling_wika V/Provider/Settings:  from settings cache , name = sound_effects_enabled , value = 0
    10-17 16:59:27.026 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{42185428 token=android.os.BinderProxy@42184a10 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity}}
    10-17 16:59:27.031 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@42184a10
    10-17 16:59:27.071 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:27.073 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:27.095 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{422b7558 token=android.os.BinderProxy@422b6b40 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 16:59:27.095 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d1a80 I.E..... R.....ID 0,0-0,0}
    10-17 16:59:27.098 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{422e9a38 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert,ident = 1}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d1a80 V.E..... R.....ID 0,0-0,0}
    10-17 16:59:27.099 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{422b7558 token=android.os.BinderProxy@422b6b40 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 16:59:27.102 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:27.103 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:27.130 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61df5b20) (w:720, h:1280, f:1)
    10-17 16:59:27.132 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 16:59:27.132 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 16:59:27.132 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 16:59:27.132 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61df5b20) (w:720 h:1280 f:1)
    10-17 16:59:27.135 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61df6898) (w:720, h:1280, f:1)
    10-17 16:59:27.137 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x61df6980>
    10-17 16:59:27.143 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:27.144 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:27.153 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:27.161 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:27.166 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: null softInputMode=288 first=true flags=#1810100
    10-17 16:59:27.166 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: com.android.internal.policy.impl.PhoneWindow$DecorView{422d1a80 V.E..... R.....ID 0,0-720,1280} ic=null tba=android.view.inputmethod.EditorInfo@422fbce0 controlFlags=#104
    10-17 16:59:27.175 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x60152d60>
    10-17 16:59:27.177 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x60152d60>
    10-17 16:59:27.187 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61df6d90) (w:720, h:1280, f:1)
    10-17 16:59:27.192 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:27.193 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:27.200 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 16:59:27.201 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x601527d8) (w:720 h:1280 f:1)
    10-17 16:59:27.201 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60dc7d98) (w:720 h:1280 f:1)
    10-17 16:59:27.202 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60c86c78) (w:720 h:1280 f:1)
    10-17 16:59:27.202 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60c8a3c0) (w:720 h:1280 f:1)
    10-17 16:59:27.533 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =ViewRoot{42219d50 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity,ident = 0}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{421b2b60 I.E..... R......D 0,0-720,1280}
    10-17 16:59:27.534 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-STOP_ACTIVITY_HIDE handled : 0 / android.os.BinderProxy@42184a10
    10-17 16:59:27.746 15341-15341/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.Button{422d3bc0 VFED..C. ........ 60,100-660,196 #7f0c0076 app:id/browse}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=491.23444, y[0]=36.85402, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2156812, downTime=2156812, deviceId=3, source=0x1002 }
    10-17 16:59:27.749 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60dc7d98) (w:720, h:1280, f:1)
    10-17 16:59:27.752 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:27.753 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:27.783 15341-15341/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.widget.Button{422d3bc0 VFED..C. ...P.... 60,100-660,196 #7f0c0076 app:id/browse}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=491.23444, y[0]=36.85402, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2156850, downTime=2156812, deviceId=3, source=0x1002 }
    10-17 16:59:27.783 15341-15341/com.example.saling_wika.saling_wika V/Provider/Settings:  from settings cache , name = sound_effects_enabled , value = 0
    10-17 16:59:27.902 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x6199ac70) (w:720, h:1280, f:1)
    10-17 16:59:27.904 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:27.905 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:27.907 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{422b7558 token=android.os.BinderProxy@422b6b40 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 16:59:27.912 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@422b6b40
    10-17 16:59:27.935 15341-15341/com.example.saling_wika.saling_wika D/AbsListView: checkAbsListViewlLogProperty get invalid command
    10-17 16:59:27.959 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{42313370 token=android.os.BinderProxy@42312950 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioFilePicker}}
    10-17 16:59:27.959 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.impl.PhoneWindow$DecorView{4231e368 I.E..... R.....ID 0,0-0,0}
    10-17 16:59:27.963 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{4234b368 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioFilePicker,ident = 2}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{4231e368 V.E..... R.....ID 0,0-0,0}
    10-17 16:59:27.963 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{42313370 token=android.os.BinderProxy@42312950 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioFilePicker}}
    10-17 16:59:27.965 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:27.966 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:27.995 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x621abea0) (w:720, h:1280, f:1)
    10-17 16:59:27.996 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 16:59:27.996 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 16:59:27.996 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 16:59:27.996 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x621abea0) (w:720 h:1280 f:1)
    10-17 16:59:27.999 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x621abf30) (w:720, h:1280, f:1)
    10-17 16:59:28.001 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x61dc7bd8>
    10-17 16:59:28.028 15341-15341/com.example.saling_wika.saling_wika D/ListView: mSelectorRect.setEmpty in layoutChildren this=android.widget.ListView{4231fd60 VFED.VC. ......ID 0,0-720,1230 #102000a android:id/list}
    10-17 16:59:28.031 15341-15341/com.example.saling_wika.saling_wika D/ListView: mSelectorRect.setEmpty in layoutChildren this=android.widget.ListView{4231fd60 VFED.VC. .F....ID 0,0-720,1230 #102000a android:id/list}
    10-17 16:59:28.043 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61dc7bd8>
    10-17 16:59:28.047 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61dc7bd8>
    10-17 16:59:28.051 15341-15341/com.example.saling_wika.saling_wika D/AbsListView: onWindowFocusChanged: hasWindowFocus=true, this=android.widget.ListView{4231fd60 VFED.VC. .F....I. 0,0-720,1230 #102000a android:id/list}
    10-17 16:59:28.052 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: android.widget.ListView{4231fd60 VFED.VC. .F....I. 0,0-720,1230 #102000a android:id/list} softInputMode=272 first=true flags=#1810100
    10-17 16:59:28.052 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: android.widget.ListView{4231fd60 VFED.VC. .F....I. 0,0-720,1230 #102000a android:id/list} ic=null tba=android.view.inputmethod.EditorInfo@4236e3e8 controlFlags=#105
    10-17 16:59:28.071 15341-15341/com.example.saling_wika.saling_wika D/ListView: mSelectorRect.setEmpty in layoutChildren this=android.widget.ListView{4231fd60 VFED.VC. .F....ID 0,0-720,1230 #102000a android:id/list}
    10-17 16:59:28.074 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61da5118) (w:720, h:1280, f:1)
    10-17 16:59:28.080 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61dc7bd8>
    10-17 16:59:28.081 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61dc7bd8>
    10-17 16:59:28.098 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 16:59:28.099 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61df6898) (w:720 h:1280 f:1)
    10-17 16:59:28.099 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61df6d90) (w:720 h:1280 f:1)
    10-17 16:59:28.100 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60dc7d98) (w:720 h:1280 f:1)
    10-17 16:59:28.100 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x6199ac70) (w:720 h:1280 f:1)
    10-17 16:59:28.399 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =ViewRoot{422e9a38 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert,ident = 1}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d1a80 I.E..... R....... 0,0-720,1280}
    10-17 16:59:28.399 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-STOP_ACTIVITY_HIDE handled : 0 / android.os.BinderProxy@422b6b40
    10-17 16:59:28.890 15341-15341/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.TextView{423639f8 V.ED.... ........ 110,12-720,88 #7f0c0087 app:id/file_picker_text}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=511.13733, y[0]=40.680725, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2157957, downTime=2157957, deviceId=3, source=0x1002 }
    10-17 16:59:28.890 15341-15341/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.LinearLayout{423633b8 V.E..... ........ 0,306-720,406}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=621.1373, y[0]=52.680725, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2157957, downTime=2157957, deviceId=3, source=0x1002 }
    10-17 16:59:28.890 15341-15341/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.ListView{4231fd60 VFED.VC. .F...... 0,0-720,1230 #102000a android:id/list}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=621.1373, y[0]=358.68073, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2157957, downTime=2157957, deviceId=3, source=0x1002 }
    10-17 16:59:28.891 15341-15341/com.example.saling_wika.saling_wika D/AbsListView: Touch down: touch mode = 0,mScrollY = 0,y = 358.68073,mFirstPosition = 0,mActivePointerId = 0,mDataChanged = false,adatper size = 5,this = android.widget.ListView{4231fd60 VFED.VC. .F...... 0,0-720,1230 #102000a android:id/list}
    10-17 16:59:28.953 15341-15341/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.widget.ListView{4231fd60 VFED.VC. .F...... 0,0-720,1230 #102000a android:id/list}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=621.1373, y[0]=358.68073, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2158020, downTime=2157957, deviceId=3, source=0x1002 }
    10-17 16:59:28.954 15341-15341/com.example.saling_wika.saling_wika D/AbsListView: Touch up: touch mode = 0,mScrollY = 0,mLastY = -2147483648,mMotionPosition = 3,mFirstPosition = 0,mDataChanged = false,adatper size = 5,this = android.widget.ListView{4231fd60 VFED.VC. .F...... 0,0-720,1230 #102000a android:id/list}
    10-17 16:59:28.964 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x6199ac70) (w:720, h:1280, f:1)
    10-17 16:59:28.967 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61dc7bd8>
    10-17 16:59:28.968 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61dc7bd8>
    10-17 16:59:29.020 15341-15341/com.example.saling_wika.saling_wika D/AbsListView: performItemClick view=android.widget.LinearLayout{423633b8 V.E..... ........ 0,306-720,406}, position=3, id=3, mChoiceMode=0, dispatchItemClick=true
    10-17 16:59:29.020 15341-15341/com.example.saling_wika.saling_wika V/Provider/Settings:  from settings cache , name = sound_effects_enabled , value = 0
    10-17 16:59:29.236 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61db29c0) (w:720, h:1280, f:1)
    10-17 16:59:29.238 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61dc7bd8>
    10-17 16:59:29.239 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61dc7bd8>
    10-17 16:59:29.241 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{42313370 token=android.os.BinderProxy@42312950 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioFilePicker}}
    10-17 16:59:29.254 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-PAUSE_ACTIVITY_FINISHING handled : 0 / android.os.BinderProxy@42312950
    10-17 16:59:29.260 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61dc7bd8>
    10-17 16:59:29.261 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61dc7bd8>
    10-17 16:59:29.263 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: SEND_RESULT handled : 0 / ResultData{token=android.os.BinderProxy@422b6b40 results[ResultInfo{who=null, request=1, result=-1, data=Intent { (has extras) }}]}
    10-17 16:59:29.264 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{422b7558 token=android.os.BinderProxy@422b6b40 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 16:59:29.264 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{422e9a38 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert,ident = 1}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d1a80 V.E..... R.....ID 0,0-720,1280}
    10-17 16:59:29.265 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-RESUME_ACTIVITY handled : 0 / android.os.BinderProxy@422b6b40
    10-17 16:59:29.276 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61dc7bd8>
    10-17 16:59:29.277 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61dc7bd8>
    10-17 16:59:29.291 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61da3c70) (w:720, h:1280, f:1)
    10-17 16:59:29.292 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 16:59:29.292 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 16:59:29.292 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 16:59:29.293 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61da3c70) (w:720 h:1280 f:1)
    10-17 16:59:29.296 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61da3c70) (w:720, h:1280, f:1)
    10-17 16:59:29.298 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x61df6980>
    10-17 16:59:29.300 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61dc7bd8>
    10-17 16:59:29.301 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61dc7bd8>
    10-17 16:59:29.307 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:29.315 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:29.319 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: null softInputMode=32 first=true flags=#1810100
    10-17 16:59:29.320 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: com.android.internal.policy.impl.PhoneWindow$DecorView{422d1a80 V.E..... R......D 0,0-720,1280} ic=null tba=android.view.inputmethod.EditorInfo@42391910 controlFlags=#104
    10-17 16:59:29.327 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61dc7bd8>
    10-17 16:59:29.328 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61dc7bd8>
    10-17 16:59:29.330 15341-15341/com.example.saling_wika.saling_wika D/AbsListView: onWindowFocusChanged: hasWindowFocus=false, this=android.widget.ListView{4231fd60 VFED.VC. .F....ID 0,0-720,1230 #102000a android:id/list}
    10-17 16:59:29.331 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 16:59:29.332 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x621abf30) (w:720 h:1280 f:1)
    10-17 16:59:29.332 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61da5118) (w:720 h:1280 f:1)
    10-17 16:59:29.333 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x6199ac70) (w:720 h:1280 f:1)
    10-17 16:59:29.333 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61db29c0) (w:720 h:1280 f:1)
    10-17 16:59:29.665 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 16:59:29.670 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-DESTROY_ACTIVITY handled : 1 / android.os.BinderProxy@42312950
    10-17 16:59:29.685 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60ef1818) (w:720, h:1280, f:1)
    10-17 16:59:29.688 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:29.689 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:30.022 15341-15341/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.Button{422e7508 VFED..C. ........ 60,1034-660,1130 #7f0c0079 app:id/ConvertButton}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=512.20526, y[0]=6.1483154, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2159088, downTime=2159088, deviceId=3, source=0x1002 }
    10-17 16:59:30.031 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61db29c0) (w:720, h:1280, f:1)
    10-17 16:59:30.034 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:30.035 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:30.072 15341-15341/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.widget.Button{422e7508 VFED..C. ...P.... 60,1034-660,1130 #7f0c0079 app:id/ConvertButton}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=511.20667, y[0]=6.1483154, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=2159139, downTime=2159088, deviceId=3, source=0x1002 }
    10-17 16:59:30.072 15341-15341/com.example.saling_wika.saling_wika V/Provider/Settings:  from settings cache , name = sound_effects_enabled , value = 0
    10-17 16:59:30.293 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x6199ac70) (w:720, h:1280, f:1)
    10-17 16:59:30.295 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:30.296 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:30.298 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{422b7558 token=android.os.BinderProxy@422b6b40 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 16:59:30.303 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@422b6b40
    10-17 16:59:30.305 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: Trying to load lib /data/app-lib/com.example.saling_wika.saling_wika-1/libpocketsphinx_jni.so 0x42189ad0
    10-17 16:59:30.307 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: Added shared lib /data/app-lib/com.example.saling_wika.saling_wika-1/libpocketsphinx_jni.so 0x42189ad0
    10-17 16:59:30.307 15341-15341/com.example.saling_wika.saling_wika D/dalvikvm: No JNI_OnLoad found in /data/app-lib/com.example.saling_wika.saling_wika-1/libpocketsphinx_jni.so 0x42189ad0, skipping init
    10-17 16:59:30.331 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: pocketsphinx.c(152): Parsed model-specific feature parameters from /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/feat.params
    10-17 16:59:30.366 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: feat.c(715): Initializing feature stream to type: '1s_c_d_dd', ceplen=13, CMN='current', VARNORM='no', AGC='none'
    10-17 16:59:30.366 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn.c(143): mean[0]= 12.00, mean[1..12]= 0.0
    10-17 16:59:30.366 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: acmod.c(164): Using subvector specification 0-12/13-25/26-38
    10-17 16:59:30.366 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: mdef.c(518): Reading model definition: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/mdef
    10-17 16:59:30.367 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: mdef.c(531): Found byte-order mark BMDF, assuming this is a binary mdef file
    10-17 16:59:30.367 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: bin_mdef.c(336): Reading binary model definition: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/mdef
    10-17 16:59:30.409 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: bin_mdef.c(516): 42 CI-phone, 137053 CD-phone, 3 emitstate/phone, 126 CI-sen, 5126 Sen, 29324 Sen-Seq
    10-17 16:59:30.409 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: tmat.c(206): Reading HMM transition probability matrices: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/transition_matrices
    10-17 16:59:30.410 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: acmod.c(117): Attempting to use PTM computation module
    10-17 16:59:30.422 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/means
    10-17 16:59:30.433 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(292): 42 codebook, 3 feature, size: 
    10-17 16:59:30.433 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:59:30.433 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:59:30.433 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:59:30.433 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/variances
    10-17 16:59:30.444 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(292): 42 codebook, 3 feature, size: 
    10-17 16:59:30.444 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:59:30.444 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:59:30.444 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 16:59:30.505 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(354): 222 variance values floored
    10-17 16:59:30.506 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(476): Loading senones from dump file /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/sendump
    10-17 16:59:30.506 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(500): BEGIN FILE FORMAT DESCRIPTION
    10-17 16:59:30.506 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(563): Rows: 128, Columns: 5126
    10-17 16:59:30.506 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(595): Using memory-mapped I/O for senones
    10-17 16:59:30.508 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(835): Maximum top-N: 4
    10-17 16:59:30.508 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: phone_loop_search.c(114): State beam -225 Phone exit beam -225 Insertion penalty 0
    10-17 16:59:30.601 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(320): Allocating 137531 * 20 bytes (2686 KiB) for word entries
    10-17 16:59:30.601 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(333): Reading main dictionary: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/cmudict-en-us.dict
    10-17 16:59:31.305 15341-15341/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133422: Failed to add the word 'ay' (duplicate?); ignored
    10-17 16:59:31.305 15341-15341/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133423: Failed to add the word 'ay(2)' (duplicate?); ignored
    10-17 16:59:31.305 15341-15341/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133425: Failed to add the word 'kayo' (duplicate?); ignored
    10-17 16:59:31.305 15341-15341/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133427: Failed to add the word 'randall' (duplicate?); ignored
    10-17 16:59:31.305 15341-15341/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133428: Failed to add the word 'si' (duplicate?); ignored
    10-17 16:59:31.305 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(213): Allocated 1007 KiB for strings, 1662 KiB for phones
    10-17 16:59:31.305 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(336): 133424 words read
    10-17 16:59:31.305 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(358): Reading filler dictionary: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/noisedict
    10-17 16:59:31.306 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(213): Allocated 0 KiB for strings, 0 KiB for phones
    10-17 16:59:31.306 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(361): 5 words read
    10-17 16:59:31.306 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(396): Building PID tables for dictionary
    10-17 16:59:31.306 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(406): Allocating 42^3 * 2 bytes (144 KiB) for word-initial triphones
    10-17 16:59:31.403 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(132): Allocated 21336 bytes (20 KiB) for word-final triphones
    10-17 16:59:31.406 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(196): Allocated 21336 bytes (20 KiB) for single-phone word triphones
    10-17 16:59:31.406 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(456): Trying to read LM in trie binary format
    10-17 16:59:31.407 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(467): Header doesn't match
    10-17 16:59:31.407 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(189): Trying to read LM in arpa format
    10-17 16:59:31.415 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(70): No \data\ mark in LM file
    10-17 16:59:31.415 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(548): Trying to read LM in DMP format
    10-17 16:59:31.415 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(630): ngrams 1=779, 2=14416, 3=46976
    10-17 16:59:31.598 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: lm_trie.c(399): Training quantizer
    10-17 16:59:31.662 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: lm_trie.c(407): Building LM trie
    10-17 16:59:33.181 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(99): 788 unique initial diphones
    10-17 16:59:33.187 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(148): 0 root, 0 non-root channels, 54 single-phone words
    10-17 16:59:33.187 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(186): Creating search tree
    10-17 16:59:33.188 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(192): before: 0 root, 0 non-root channels, 54 single-phone words
    10-17 16:59:33.238 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(326): after: max nonroot chan increased to 2220
    10-17 16:59:33.238 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(339): after: 256 root, 2092 non-root channels, 9 single-phone words
    10-17 16:59:33.238 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(157): fwdflat: min_ef_width = 4, max_sf_win = 25
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn_prior.c(131): cmn_prior_update: from < 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: 40.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: 10.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: 10.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: >
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn_prior.c(149): cmn_prior_update: to   < 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: 97.14 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -21.08 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -5.67 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -4.40 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -2.49 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -2.76 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -1.59 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -3.63 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -2.21 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  0.83 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx:  1.41 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -0.75 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: -1.58 
    10-17 16:59:33.428 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: >
    10-17 16:59:33.474 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1553):      155 words recognized (5/fr)
    10-17 16:59:33.474 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1555):    46224 senones evaluated (1444/fr)
    10-17 16:59:33.474 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1559):    24618 channels searched (769/fr), 7168 1st, 2206 last
    10-17 16:59:33.474 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1562):      292 words for which last channels evaluated (9/fr)
    10-17 16:59:33.474 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1564):     1483 candidate words for entering last phone (46/fr)
    10-17 16:59:33.474 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1567): fwdtree 0.21 CPU 0.656 xRT
    10-17 16:59:33.474 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1570): fwdtree 0.24 wall 0.734 xRT
    10-17 16:59:33.474 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 3 words
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(948):      130 words recognized (4/fr)
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(950):      373 senones evaluated (12/fr)
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(952):      171 channels searched (5/fr)
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(954):      171 words searched (5/fr)
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(957):       88 word transitions (2/fr)
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(960): fwdflat 0.03 CPU 0.094 xRT
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(963): fwdflat 0.03 wall 0.078 xRT
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1253): lattice start node <s>.0 end node </s>.19
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1279): Eliminated 2 nodes before end node
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1384): Lattice has 54 nodes, 23 links
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ps_lattice.c(1380): Bestpath score: -939
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ps_lattice.c(1384): Normalizer P(O) = alpha(</s>:19:30) = -66049
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ps_lattice.c(1441): Joint P(O,S) = -71441 P(S|O) = -5392
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(875): bestpath 0.00 CPU 0.000 xRT
    10-17 16:59:33.499 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(878): bestpath 0.00 wall 0.001 xRT
    10-17 16:59:33.505 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1030): bestpath 0.00 CPU 0.000 xRT
    10-17 16:59:33.505 15341-15341/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1033): bestpath 0.00 wall 0.000 xRT
    10-17 16:59:33.512 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{4239a0a8 token=android.os.BinderProxy@42399688 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.ConversionModule}}
    10-17 16:59:33.513 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.impl.PhoneWindow$DecorView{4239b970 I.E..... R.....ID 0,0-0,0}
    10-17 16:59:33.517 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{423a8ef8 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.ConversionModule,ident = 3}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{4239b970 V.E..... R.....ID 0,0-0,0}
    10-17 16:59:33.517 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{4239a0a8 token=android.os.BinderProxy@42399688 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.ConversionModule}}
    10-17 16:59:33.518 15341-15341/com.example.saling_wika.saling_wika I/Choreographer: Skipped 174 frames!  The application may be doing too much work on its main thread.
    10-17 16:59:33.520 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61df6980>
    10-17 16:59:33.521 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61df6980>
    10-17 16:59:33.550 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x64177310) (w:720, h:1280, f:1)
    10-17 16:59:33.551 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 16:59:33.551 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 16:59:33.551 15341-15341/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 16:59:33.552 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x64177310) (w:720 h:1280 f:1)
    10-17 16:59:33.555 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x64177310) (w:720, h:1280, f:1)
    10-17 16:59:33.556 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x6416e278>
    10-17 16:59:33.561 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: null softInputMode=288 first=true flags=#1810100
    10-17 16:59:33.562 15341-15341/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: com.android.internal.policy.impl.PhoneWindow$DecorView{4239b970 V.E..... R.....ID 0,0-720,1280} ic=null tba=android.view.inputmethod.EditorInfo@423b21e0 controlFlags=#104
    10-17 16:59:33.567 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6416e278>
    10-17 16:59:33.568 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6416e278>
    10-17 16:59:33.619 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x6416e688) (w:112, h:88, f:1)
    10-17 16:59:33.624 15341-15341/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 16:59:33.625 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61da3c70) (w:720 h:1280 f:1)
    10-17 16:59:33.625 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60ef1818) (w:720 h:1280 f:1)
    10-17 16:59:33.625 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61db29c0) (w:720 h:1280 f:1)
    10-17 16:59:33.626 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x6199ac70) (w:720 h:1280 f:1)
    10-17 16:59:33.935 15341-15341/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =ViewRoot{422e9a38 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert,ident = 1}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d1a80 I.E..... R....... 0,0-720,1280}
    10-17 16:59:33.935 15341-15341/com.example.saling_wika.saling_wika D/ActivityThread: ACT-STOP_ACTIVITY_HIDE handled : 0 / android.os.BinderProxy@422b6b40
    10-17 16:59:35.510 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x6416e688) (w:112 h:88 f:1)
    10-17 16:59:35.553 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x6160db98) (w:144, h:88, f:1)
    10-17 16:59:37.508 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x6160db98) (w:144 h:88 f:1)
    10-17 16:59:37.557 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60c92ce8) (w:160, h:88, f:1)
    10-17 16:59:39.510 15341-15341/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60c92ce8) (w:160 h:88 f:1)
    
     

    Last edit: Randall Castillo 2016-10-17
    • Nickolay V. Shmyrev

      You need to provide a complete updated log

       
  • Randall Castillo

    I updated my previous post with the complete logcat.

     
    • Nickolay V. Shmyrev

      This piece of code also looks suspicious

              final File file = new File(AudioToConvert.pathko);
              Uri uri = Uri.fromFile(file);
              File auxFile = new File(uri.getPath());
              stream = new FileInputStream(auxFile);
      

      From it you seem to process directory object instead of actual wav file. I'm not sure why do you need "auxFile". You can count the number of processed bytes in order to ensure you process the wav file.

       
  • Randall Castillo

    We removed the Uri uri = Uri.fromFile(file); and stream = new FileInputStream(auxFile); from the code yet we still got no success on the conversion process.

    Here is the updated logcat after we tried the solution stated above:

    10-17 17:21:16.187 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: Zygote::ForkAndSpecialize : 0
    10-17 17:21:16.188 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: zygote get new systemTid : 26228
    10-17 17:21:16.188 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: Late-enabling CheckJNI
    10-17 17:21:16.188 26228-26232/com.example.saling_wika.saling_wika D/dalvikvm: threadid=2: interp stack at 0x5bac8000
    10-17 17:21:16.188 26228-26233/com.example.saling_wika.saling_wika D/dalvikvm: threadid=3: interp stack at 0x5bc0a000
    10-17 17:21:16.189 26228-26233/com.example.saling_wika.saling_wika D/dalvikvm: Elevating priority from 0 to -8
    10-17 17:21:16.189 26228-26228/com.example.saling_wika.saling_wika D/jdwp: prepping for JDWP over ADB
    10-17 17:21:16.189 26228-26234/com.example.saling_wika.saling_wika D/dalvikvm: threadid=4: interp stack at 0x5f330000
    10-17 17:21:16.189 26228-26234/com.example.saling_wika.saling_wika D/jdwp: JDWP: thread running
    10-17 17:21:16.189 26228-26234/com.example.saling_wika.saling_wika D/jdwp: trying to receive file descriptor from ADB
    10-17 17:21:16.189 26228-26235/com.example.saling_wika.saling_wika D/dalvikvm: threadid=5: interp stack at 0x5f44e000
    10-17 17:21:16.189 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: zygote get thread init done
    10-17 17:21:16.190 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: create interp thread : stack size=128KB
    10-17 17:21:16.190 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: create new thread
    10-17 17:21:16.190 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: new thread created
    10-17 17:21:16.190 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: update thread list
    10-17 17:21:16.190 26228-26236/com.example.saling_wika.saling_wika D/dalvikvm: threadid=6: interp stack at 0x5f46e000
    10-17 17:21:16.190 26228-26236/com.example.saling_wika.saling_wika D/dalvikvm: threadid=6: created from interp
    10-17 17:21:16.190 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: start new thread
    10-17 17:21:16.190 26228-26236/com.example.saling_wika.saling_wika D/dalvikvm: threadid=6: notify debugger
    10-17 17:21:16.190 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: create interp thread : stack size=128KB
    10-17 17:21:16.190 26228-26236/com.example.saling_wika.saling_wika D/dalvikvm: threadid=6 (ReferenceQueueDaemon): calling run()
    10-17 17:21:16.190 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: create new thread
    10-17 17:21:16.190 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: new thread created
    10-17 17:21:16.190 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: update thread list
    10-17 17:21:16.190 26228-26237/com.example.saling_wika.saling_wika D/dalvikvm: threadid=7: interp stack at 0x5f58c000
    10-17 17:21:16.191 26228-26237/com.example.saling_wika.saling_wika D/dalvikvm: threadid=7: created from interp
    10-17 17:21:16.191 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: start new thread
    10-17 17:21:16.191 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: create interp thread : stack size=128KB
    10-17 17:21:16.191 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: create new thread
    10-17 17:21:16.192 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: new thread created
    10-17 17:21:16.192 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: update thread list
    10-17 17:21:16.192 26228-26237/com.example.saling_wika.saling_wika D/dalvikvm: threadid=7: notify debugger
    10-17 17:21:16.192 26228-26237/com.example.saling_wika.saling_wika D/dalvikvm: threadid=7 (FinalizerDaemon): calling run()
    10-17 17:21:16.193 26228-26238/com.example.saling_wika.saling_wika D/dalvikvm: threadid=8: interp stack at 0x5f6aa000
    10-17 17:21:16.193 26228-26238/com.example.saling_wika.saling_wika D/dalvikvm: threadid=8: created from interp
    10-17 17:21:16.193 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: start new thread
    10-17 17:21:16.193 26228-26238/com.example.saling_wika.saling_wika D/dalvikvm: threadid=8: notify debugger
    10-17 17:21:16.193 26228-26238/com.example.saling_wika.saling_wika D/dalvikvm: threadid=8 (FinalizerWatchdogDaemon): calling run()
    10-17 17:21:16.197 26228-26234/com.example.saling_wika.saling_wika D/jdwp: received file descriptor 38 from ADB
    10-17 17:21:16.203 26228-26240/com.example.saling_wika.saling_wika D/dalvikvm: threadid=9: interp stack at 0x5fac4000
    10-17 17:21:16.203 26228-26241/com.example.saling_wika.saling_wika D/dalvikvm: threadid=10: interp stack at 0x5fbe2000
    10-17 17:21:16.227 26228-26228/com.example.saling_wika.saling_wika V/Provider/Settings: invalidate [system]: current 8 != cached 0
    10-17 17:21:16.230 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: hoder:android.app.IActivityManager$ContentProviderHolder@42180fd0,provider,holder.Provider:android.content.ContentProviderProxy@42181748
    10-17 17:21:16.231 26228-26228/com.example.saling_wika.saling_wika V/Provider/Settings: from db cache, name = anr_debugging_mechanism , value = 1
    10-17 17:21:16.236 26228-26228/com.example.saling_wika.saling_wika D/asset: AssetManager-->addDefaultAssets CIP path not exsit!
    10-17 17:21:16.240 26228-26228/com.example.saling_wika.saling_wika D/Proxy: setHttpRequestCheckHandler
    10-17 17:21:16.242 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: open_cached_dex_file : /data/app/com.example.saling_wika.saling_wika-2.apk /data/dalvik-cache/data@app@com.example.saling_wika.saling_wika-2.apk@classes.dex
    10-17 17:21:16.250 26228-26228/com.example.saling_wika.saling_wika I/InstantRun: Instant Run Runtime started. Android package is com.example.saling_wika.saling_wika, real application class is null.
    10-17 17:21:16.254 26228-26228/com.example.saling_wika.saling_wika W/InstantRun: No instant run dex files added to classpath
    10-17 17:21:16.259 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: create interp thread : stack size=128KB
    10-17 17:21:16.259 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: create new thread
    10-17 17:21:16.259 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: new thread created
    10-17 17:21:16.259 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: update thread list
    10-17 17:21:16.260 26228-26242/com.example.saling_wika.saling_wika D/dalvikvm: threadid=11: interp stack at 0x60005000
    10-17 17:21:16.260 26228-26242/com.example.saling_wika.saling_wika D/dalvikvm: threadid=11: created from interp
    10-17 17:21:16.260 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: start new thread
    10-17 17:21:16.260 26228-26242/com.example.saling_wika.saling_wika D/dalvikvm: threadid=11: notify debugger
    10-17 17:21:16.260 26228-26242/com.example.saling_wika.saling_wika D/dalvikvm: threadid=11 (Thread-550): calling run()
    10-17 17:21:16.260 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: BIND_APPLICATION handled : 0 / AppBindData{appInfo=ApplicationInfo{4217c3c8 com.example.saling_wika.saling_wika}}
    10-17 17:21:16.277 26228-26228/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.view.Window$Callback.onProvideKeyboardShortcuts, referenced from method android.support.v7.view.WindowCallbackWrapper.onProvideKeyboardShortcuts
    10-17 17:21:16.277 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve interface method 20378: Landroid/view/Window$Callback;.onProvideKeyboardShortcuts (Ljava/util/List;Landroid/view/Menu;I)V
    10-17 17:21:16.277 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    10-17 17:21:16.278 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to find class referenced in signature (Landroid/view/SearchEvent;)
    10-17 17:21:16.278 26228-26228/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.view.Window$Callback.onSearchRequested, referenced from method android.support.v7.view.WindowCallbackWrapper.onSearchRequested
    10-17 17:21:16.278 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve interface method 20380: Landroid/view/Window$Callback;.onSearchRequested (Landroid/view/SearchEvent;)Z
    10-17 17:21:16.278 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    10-17 17:21:16.278 26228-26228/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.view.Window$Callback.onWindowStartingActionMode, referenced from method android.support.v7.view.WindowCallbackWrapper.onWindowStartingActionMode
    10-17 17:21:16.278 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve interface method 20384: Landroid/view/Window$Callback;.onWindowStartingActionMode (Landroid/view/ActionMode$Callback;I)Landroid/view/ActionMode;
    10-17 17:21:16.278 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    10-17 17:21:16.279 26228-26228/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.res.TypedArray.getChangingConfigurations, referenced from method android.support.v7.widget.TintTypedArray.getChangingConfigurations
    10-17 17:21:16.279 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 817: Landroid/content/res/TypedArray;.getChangingConfigurations ()I
    10-17 17:21:16.279 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
    10-17 17:21:16.280 26228-26228/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.res.TypedArray.getType, referenced from method android.support.v7.widget.TintTypedArray.getType
    10-17 17:21:16.280 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 839: Landroid/content/res/TypedArray;.getType (I)I
    10-17 17:21:16.280 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0008
    10-17 17:21:16.359 26228-26228/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.res.Resources.getDrawable, referenced from method android.support.v7.widget.ResourcesWrapper.getDrawable
    10-17 17:21:16.359 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 780: Landroid/content/res/Resources;.getDrawable (ILandroid/content/res/Resources$Theme;)Landroid/graphics/drawable/Drawable;
    10-17 17:21:16.359 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
    10-17 17:21:16.359 26228-26228/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.res.Resources.getDrawableForDensity, referenced from method android.support.v7.widget.ResourcesWrapper.getDrawableForDensity
    10-17 17:21:16.359 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 782: Landroid/content/res/Resources;.getDrawableForDensity (IILandroid/content/res/Resources$Theme;)Landroid/graphics/drawable/Drawable;
    10-17 17:21:16.359 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
    10-17 17:21:16.367 26228-26228/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.content.Context.getColorStateList, referenced from method android.support.v7.content.res.AppCompatResources.getColorStateList
    10-17 17:21:16.367 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 522: Landroid/content/Context;.getColorStateList (I)Landroid/content/res/ColorStateList;
    10-17 17:21:16.367 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    10-17 17:21:16.422 26228-26228/com.example.saling_wika.saling_wika E/dalvikvm: Could not find class 'android.graphics.drawable.RippleDrawable', referenced from method android.support.v7.widget.AppCompatImageHelper.hasOverlappingRendering
    10-17 17:21:16.422 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve instanceof 169 (Landroid/graphics/drawable/RippleDrawable;) in Landroid/support/v7/widget/AppCompatImageHelper;
    10-17 17:21:16.422 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x20 at 0x000c
    10-17 17:21:16.446 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{4217dd78 token=android.os.BinderProxy@4217d360 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity}}
    10-17 17:21:16.446 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.impl.PhoneWindow$DecorView{421ad608 I.E..... R.....ID 0,0-0,0}
    10-17 17:21:16.455 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{422147f8 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity,ident = 0}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{421ad608 V.E..... R.....ID 0,0-0,0}
    10-17 17:21:16.456 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{4217dd78 token=android.os.BinderProxy@4217d360 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity}}
    10-17 17:21:16.515 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x5f20b768) (w:720, h:1280, f:1)
    10-17 17:21:16.517 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 17:21:16.517 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 17:21:16.517 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 17:21:16.517 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x5f20b768) (w:720 h:1280 f:1)
    10-17 17:21:16.521 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x6093e590) (w:720, h:1280, f:1)
    10-17 17:21:16.523 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: Enabling debug mode 0
    10-17 17:21:16.524 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x606bbe60) (w:768, h:768, f:1)
    10-17 17:21:16.526 26228-26228/com.example.saling_wika.saling_wika I/[MALI][Gralloc]: dlopen libsec_mem.so fail
    10-17 17:21:16.527 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x6093eb18>
    10-17 17:21:16.545 26228-26228/com.example.saling_wika.saling_wika I/dalvikvm: Could not find method android.support.v7.widget.LinearLayoutCompat.drawableHotspotChanged, referenced from method android.support.design.internal.ForegroundLinearLayout.drawableHotspotChanged
    10-17 17:21:16.546 26228-26228/com.example.saling_wika.saling_wika W/dalvikvm: VFY: unable to resolve virtual method 16957: Landroid/support/v7/widget/LinearLayoutCompat;.drawableHotspotChanged (FF)V
    10-17 17:21:16.546 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: VFY: replacing opcode 0x6f at 0x0000
    10-17 17:21:16.616 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:16.619 26228-26255/com.example.saling_wika.saling_wika D/dalvikvm: threadid=12: interp stack at 0x60ee3000
    10-17 17:21:16.626 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:16.643 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: android.support.v4.widget.DrawerLayout{421be450 VFE..... .F....ID 0,0-720,1230 #7f0c0073 app:id/drawer_layout} softInputMode=288 first=true flags=#1810100
    10-17 17:21:16.643 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: android.support.v4.widget.DrawerLayout{421be450 VFE..... .F....ID 0,0-720,1230 #7f0c0073 app:id/drawer_layout} ic=null tba=android.view.inputmethod.EditorInfo@4226a208 controlFlags=#105
    10-17 17:21:16.646 26228-26256/com.example.saling_wika.saling_wika D/dalvikvm: threadid=13: interp stack at 0x61211000
    10-17 17:21:16.647 26228-26257/com.example.saling_wika.saling_wika D/dalvikvm: threadid=14: interp stack at 0x61331000
    10-17 17:21:16.675 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60f468a0) (w:720, h:1280, f:1)
    10-17 17:21:16.681 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:16.683 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.004 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: Couldn't open '/dev/touch' (Permission denied)
    10-17 17:21:22.004 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read x fail: Bad file number
    10-17 17:21:22.004 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read y fail: Bad file number
    10-17 17:21:22.005 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: Couldn't open '/dev/touch' (Permission denied)
    10-17 17:21:22.005 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read x fail: Bad file number
    10-17 17:21:22.005 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read y fail: Bad file number
    10-17 17:21:22.005 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: Couldn't open '/dev/touch' (Permission denied)
    10-17 17:21:22.005 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read x fail: Bad file number
    10-17 17:21:22.005 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read y fail: Bad file number
    10-17 17:21:22.006 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.ImageButton{42208548 VFED..C. ........ 0,0-112,112}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=97.86408, y[0]=89.89072, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3471070, downTime=3471070, deviceId=3, source=0x1002 }
    10-17 17:21:22.042 26228-26228/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.widget.ImageButton{42208548 VFED..C. ...p.... 0,0-112,112}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=95.86685, y[0]=89.89072, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3471108, downTime=3471070, deviceId=3, source=0x1002 }
    10-17 17:21:22.047 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60905e90) (w:720, h:1280, f:1)
    10-17 17:21:22.049 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.052 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.056 26228-26228/com.example.saling_wika.saling_wika V/Provider/Settings: from db cache, name = sound_effects_enabled , value = 0
    10-17 17:21:22.062 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x609025c0) (w:720, h:1280, f:1)
    10-17 17:21:22.077 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.080 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.090 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.092 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.094 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: android.support.design.internal.NavigationMenuView{421e7c70 VFED.V.. .F...... 0,0-560,1230 #7f0c0082 app:id/design_navigation_view} ic=null tba=android.view.inputmethod.EditorInfo@42297478 controlFlags=#100
    10-17 17:21:22.102 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.106 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.119 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.121 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.136 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.138 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.154 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.161 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.174 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.177 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.195 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.204 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.211 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.213 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.228 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.230 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.247 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.249 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.265 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.267 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.283 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.285 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.302 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.304 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.321 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.323 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.340 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.341 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.358 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.360 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.377 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.378 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.394 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.396 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.413 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.415 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.432 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.434 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.450 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.452 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.467 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.469 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:22.486 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:22.488 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.187 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: Couldn't open '/dev/touch' (Permission denied)
    10-17 17:21:23.187 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read x fail: Bad file number
    10-17 17:21:23.187 26228-26228/com.example.saling_wika.saling_wika D/VelocityTracker: tpd read y fail: Bad file number
    10-17 17:21:23.189 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.support.v7.widget.AppCompatCheckedTextView{42243310 V.ED.... ........ 32,0-528,96 #7f0c0083 app:id/design_menu_item_text}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=40.89875, y[0]=61.425476, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3472254, downTime=3472254, deviceId=3, source=0x1002 }
    10-17 17:21:23.189 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.support.design.internal.NavigationMenuItemView{42242b80 VFED..C. ........ 0,624-560,720}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=72.89875, y[0]=61.425476, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3472254, downTime=3472254, deviceId=3, source=0x1002 }
    10-17 17:21:23.281 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:23.284 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.296 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:23.298 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.314 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:23.316 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.319 26228-26228/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.support.design.internal.NavigationMenuItemView{42242b80 VFED..C. ...p.... 0,624-560,720}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=73.89737, y[0]=61.425476, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3472383, downTime=3472254, deviceId=3, source=0x1002 }
    10-17 17:21:23.332 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:23.334 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.335 26228-26228/com.example.saling_wika.saling_wika V/Provider/Settings:  from settings cache , name = sound_effects_enabled , value = 0
    10-17 17:21:23.389 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:23.391 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.393 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{4217dd78 token=android.os.BinderProxy@4217d360 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity}}
    10-17 17:21:23.399 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@4217d360
    10-17 17:21:23.411 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:23.413 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.454 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{422cc988 token=android.os.BinderProxy@422cbf70 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 17:21:23.454 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d0320 I.E..... R.....ID 0,0-0,0}
    10-17 17:21:23.458 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{422e82d8 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert,ident = 1}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d0320 V.E..... R.....ID 0,0-0,0}
    10-17 17:21:23.460 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{422cc988 token=android.os.BinderProxy@422cbf70 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 17:21:23.466 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:23.467 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.502 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61f16cd0) (w:720, h:1280, f:1)
    10-17 17:21:23.503 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 17:21:23.503 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 17:21:23.503 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 17:21:23.504 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61f16cd0) (w:720 h:1280 f:1)
    10-17 17:21:23.506 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61f17a60) (w:720, h:1280, f:1)
    10-17 17:21:23.508 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x61f17b60>
    10-17 17:21:23.512 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:23.515 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.522 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61f17b60>
    10-17 17:21:23.528 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61f17b60>
    10-17 17:21:23.533 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: null softInputMode=288 first=true flags=#1810100
    10-17 17:21:23.533 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: com.android.internal.policy.impl.PhoneWindow$DecorView{422d0320 V.E..... R.....ID 0,0-720,1280} ic=null tba=android.view.inputmethod.EditorInfo@422fa540 controlFlags=#104
    10-17 17:21:23.549 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6093eb18>
    10-17 17:21:23.553 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6093eb18>
    10-17 17:21:23.566 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61f071a8) (w:720, h:1280, f:1)
    10-17 17:21:23.571 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61f17b60>
    10-17 17:21:23.572 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61f17b60>
    10-17 17:21:23.577 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 17:21:23.578 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x6093e590) (w:720 h:1280 f:1)
    10-17 17:21:23.578 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60f468a0) (w:720 h:1280 f:1)
    10-17 17:21:23.579 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60905e90) (w:720 h:1280 f:1)
    10-17 17:21:23.579 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x609025c0) (w:720 h:1280 f:1)
    10-17 17:21:23.885 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =ViewRoot{422147f8 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.MainActivity,ident = 0}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{421ad608 I.E..... R......D 0,0-720,1280}
    10-17 17:21:23.885 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-STOP_ACTIVITY_HIDE handled : 0 / android.os.BinderProxy@4217d360
    10-17 17:21:24.190 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.RelativeLayout{422d1df8 V.E..... ........ 0,0-720,1230}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=227.68378, y[0]=210.79626, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3473256, downTime=3473256, deviceId=3, source=0x1002 }
    10-17 17:21:24.190 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.FrameLayout{422d1670 V.ED.... ........ 0,50-720,1280 #1020002 android:id/content}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=227.68378, y[0]=210.79626, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3473256, downTime=3473256, deviceId=3, source=0x1002 }
    10-17 17:21:24.191 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.LinearLayout{422d0918 V.E..... ........ 0,0-720,1280}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=227.68378, y[0]=260.79626, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3473256, downTime=3473256, deviceId=3, source=0x1002 }
    10-17 17:21:24.192 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to com.android.internal.policy.impl.PhoneWindow$DecorView{422d0320 V.E..... R....... 0,0-720,1280}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=227.68378, y[0]=260.79626, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3473256, downTime=3473256, deviceId=3, source=0x1002 }
    10-17 17:21:24.201 26228-26228/com.example.saling_wika.saling_wika I/View: Touch up dispatch to com.android.internal.policy.impl.PhoneWindow$DecorView{422d0320 V.E..... R....... 0,0-720,1280}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=227.68378, y[0]=260.79626, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3473267, downTime=3473256, deviceId=3, source=0x1002 }
    10-17 17:21:24.527 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.Button{422d2460 VFED..C. ........ 60,100-660,196 #7f0c0076 app:id/browse}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=126.74065, y[0]=62.833725, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3473594, downTime=3473594, deviceId=3, source=0x1002 }
    10-17 17:21:24.548 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60f468a0) (w:720, h:1280, f:1)
    10-17 17:21:24.553 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61f17b60>
    10-17 17:21:24.555 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61f17b60>
    10-17 17:21:24.577 26228-26228/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.widget.Button{422d2460 VFED..C. ...P.... 60,100-660,196 #7f0c0076 app:id/browse}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=126.74065, y[0]=62.833725, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3473644, downTime=3473594, deviceId=3, source=0x1002 }
    10-17 17:21:24.578 26228-26228/com.example.saling_wika.saling_wika V/Provider/Settings:  from settings cache , name = sound_effects_enabled , value = 0
    10-17 17:21:24.702 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x609088a8) (w:720, h:1280, f:1)
    10-17 17:21:24.704 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61f17b60>
    10-17 17:21:24.705 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61f17b60>
    10-17 17:21:24.706 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{422cc988 token=android.os.BinderProxy@422cbf70 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 17:21:24.714 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@422cbf70
    10-17 17:21:24.735 26228-26228/com.example.saling_wika.saling_wika D/AbsListView: checkAbsListViewlLogProperty get invalid command
    10-17 17:21:24.740 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{423170f0 token=android.os.BinderProxy@423166d0 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioFilePicker}}
    10-17 17:21:24.740 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.impl.PhoneWindow$DecorView{423220e8 I.E..... R.....ID 0,0-0,0}
    10-17 17:21:24.744 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{4234f0e8 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioFilePicker,ident = 2}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{423220e8 V.E..... R.....ID 0,0-0,0}
    10-17 17:21:24.744 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{423170f0 token=android.os.BinderProxy@423166d0 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioFilePicker}}
    10-17 17:21:24.746 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61f17b60>
    10-17 17:21:24.747 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61f17b60>
    10-17 17:21:24.771 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x622c1e78) (w:720, h:1280, f:1)
    10-17 17:21:24.773 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 17:21:24.773 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 17:21:24.773 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 17:21:24.773 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x622c1e78) (w:720 h:1280 f:1)
    10-17 17:21:24.776 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x622c1e78) (w:720, h:1280, f:1)
    10-17 17:21:24.777 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x622c9458>
    10-17 17:21:24.803 26228-26228/com.example.saling_wika.saling_wika D/ListView: mSelectorRect.setEmpty in layoutChildren this=android.widget.ListView{42323ae0 VFED.VC. ......ID 0,0-720,1230 #102000a android:id/list}
    10-17 17:21:24.806 26228-26228/com.example.saling_wika.saling_wika D/ListView: mSelectorRect.setEmpty in layoutChildren this=android.widget.ListView{42323ae0 VFED.VC. .F....ID 0,0-720,1230 #102000a android:id/list}
    10-17 17:21:24.814 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:24.819 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:24.823 26228-26228/com.example.saling_wika.saling_wika D/AbsListView: onWindowFocusChanged: hasWindowFocus=true, this=android.widget.ListView{42323ae0 VFED.VC. .F....I. 0,0-720,1230 #102000a android:id/list}
    10-17 17:21:24.824 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: android.widget.ListView{42323ae0 VFED.VC. .F....I. 0,0-720,1230 #102000a android:id/list} softInputMode=272 first=true flags=#1810100
    10-17 17:21:24.824 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: android.widget.ListView{42323ae0 VFED.VC. .F....I. 0,0-720,1230 #102000a android:id/list} ic=null tba=android.view.inputmethod.EditorInfo@423721c8 controlFlags=#105
    10-17 17:21:24.848 26228-26228/com.example.saling_wika.saling_wika D/ListView: mSelectorRect.setEmpty in layoutChildren this=android.widget.ListView{42323ae0 VFED.VC. .F....ID 0,0-720,1230 #102000a android:id/list}
    10-17 17:21:24.850 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61ecdc40) (w:720, h:1280, f:1)
    10-17 17:21:24.855 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:24.856 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:24.875 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 17:21:24.877 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61f17a60) (w:720 h:1280 f:1)
    10-17 17:21:24.878 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61f071a8) (w:720 h:1280 f:1)
    10-17 17:21:24.878 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60f468a0) (w:720 h:1280 f:1)
    10-17 17:21:24.879 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x609088a8) (w:720 h:1280 f:1)
    10-17 17:21:25.175 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =ViewRoot{422e82d8 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert,ident = 1}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d0320 I.E..... R....... 0,0-720,1280}
    10-17 17:21:25.175 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-STOP_ACTIVITY_HIDE handled : 0 / android.os.BinderProxy@422cbf70
    10-17 17:21:25.964 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60f468a0) (w:720, h:1280, f:1)
    10-17 17:21:25.966 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:25.967 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:25.981 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61ed0030) (w:720, h:1280, f:1)
    10-17 17:21:25.984 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:25.985 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:25.999 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.000 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.009 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.TextView{42367708 V.ED.... ........ 110,12-720,88 #7f0c0087 app:id/file_picker_text}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=89.72261, y[0]=51.67212, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3475076, downTime=3475076, deviceId=3, source=0x1002 }
    10-17 17:21:26.010 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.LinearLayout{423670c8 V.E..... ........ 0,306-720,406}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=199.72261, y[0]=63.67212, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3475076, downTime=3475076, deviceId=3, source=0x1002 }
    10-17 17:21:26.010 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.ListView{42323ae0 VFED.VC. .F....ID 0,0-720,1230 #102000a android:id/list}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=199.72261, y[0]=369.67212, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3475076, downTime=3475076, deviceId=3, source=0x1002 }
    10-17 17:21:26.010 26228-26228/com.example.saling_wika.saling_wika D/AbsListView: Touch down: touch mode = 0,mScrollY = 0,y = 369.67212,mFirstPosition = 0,mActivePointerId = 0,mDataChanged = false,adatper size = 5,this = android.widget.ListView{42323ae0 VFED.VC. .F....ID 0,0-720,1230 #102000a android:id/list}
    10-17 17:21:26.017 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.018 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.036 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.037 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.054 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.056 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.060 26228-26228/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.widget.ListView{42323ae0 VFED.VC. .F....ID 0,0-720,1230 #102000a android:id/list}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=199.72261, y[0]=369.67212, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3475127, downTime=3475076, deviceId=3, source=0x1002 }
    10-17 17:21:26.060 26228-26228/com.example.saling_wika.saling_wika D/AbsListView: Touch up: touch mode = 0,mScrollY = 0,mLastY = -2147483648,mMotionPosition = 3,mFirstPosition = 0,mDataChanged = false,adatper size = 5,this = android.widget.ListView{42323ae0 VFED.VC. .F....ID 0,0-720,1230 #102000a android:id/list}
    10-17 17:21:26.073 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.074 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.090 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.091 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.109 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.110 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.127 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.128 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.130 26228-26228/com.example.saling_wika.saling_wika D/AbsListView: performItemClick view=android.widget.LinearLayout{423670c8 V.E..... ........ 0,306-720,406}, position=3, id=3, mChoiceMode=0, dispatchItemClick=true
    10-17 17:21:26.131 26228-26228/com.example.saling_wika.saling_wika V/Provider/Settings:  from settings cache , name = sound_effects_enabled , value = 0
    10-17 17:21:26.251 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.251 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.253 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{423170f0 token=android.os.BinderProxy@423166d0 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioFilePicker}}
    10-17 17:21:26.260 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-PAUSE_ACTIVITY_FINISHING handled : 0 / android.os.BinderProxy@423166d0
    10-17 17:21:26.261 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x622c9458>
    10-17 17:21:26.262 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x622c9458>
    10-17 17:21:26.264 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: SEND_RESULT handled : 0 / ResultData{token=android.os.BinderProxy@422cbf70 results[ResultInfo{who=null, request=1, result=-1, data=Intent { (has extras) }}]}
    10-17 17:21:26.265 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{422cc988 token=android.os.BinderProxy@422cbf70 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 17:21:26.265 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{422e82d8 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert,ident = 1}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d0320 V.E..... R.....ID 0,0-720,1280}
    10-17 17:21:26.265 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-RESUME_ACTIVITY handled : 0 / android.os.BinderProxy@422cbf70
    10-17 17:21:26.285 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61f074e8) (w:720, h:1280, f:1)
    10-17 17:21:26.287 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 17:21:26.287 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 17:21:26.287 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 17:21:26.287 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61f074e8) (w:720 h:1280 f:1)
    10-17 17:21:26.290 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61f074e8) (w:720, h:1280, f:1)
    10-17 17:21:26.292 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x61f17b60>
    10-17 17:21:26.294 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: null softInputMode=32 first=true flags=#1810100
    10-17 17:21:26.294 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: com.android.internal.policy.impl.PhoneWindow$DecorView{422d0320 V.E..... R.....ID 0,0-720,1280} ic=null tba=android.view.inputmethod.EditorInfo@42395d50 controlFlags=#104
    10-17 17:21:26.314 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61f17b60>
    10-17 17:21:26.322 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61f17b60>
    10-17 17:21:26.330 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 17:21:26.331 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x622c1e78) (w:720 h:1280 f:1)
    10-17 17:21:26.331 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61ecdc40) (w:720 h:1280 f:1)
    10-17 17:21:26.332 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60f468a0) (w:720 h:1280 f:1)
    10-17 17:21:26.332 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61ed0030) (w:720 h:1280 f:1)
    10-17 17:21:26.338 26228-26228/com.example.saling_wika.saling_wika D/AbsListView: onWindowFocusChanged: hasWindowFocus=false, this=android.widget.ListView{42323ae0 VFED.VC. .F...... 0,0-720,1230 #102000a android:id/list}
    10-17 17:21:26.665 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 17:21:26.669 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-DESTROY_ACTIVITY handled : 1 / android.os.BinderProxy@423166d0
    10-17 17:21:27.687 26228-26228/com.example.saling_wika.saling_wika I/View: Touch down dispatch to android.widget.Button{422e5da8 VFED..C. ........ 60,1034-660,1130 #7f0c0079 app:id/ConvertButton}, event = MotionEvent { action=ACTION_DOWN, id[0]=0, x[0]=115.755905, y[0]=57.10852, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3476753, downTime=3476753, deviceId=3, source=0x1002 }
    10-17 17:21:27.691 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x60f468a0) (w:720, h:1280, f:1)
    10-17 17:21:27.694 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61f17b60>
    10-17 17:21:27.695 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61f17b60>
    10-17 17:21:27.763 26228-26228/com.example.saling_wika.saling_wika I/View: Touch up dispatch to android.widget.Button{422e5da8 VFED..C. ...P.... 60,1034-660,1130 #7f0c0079 app:id/ConvertButton}, event = MotionEvent { action=ACTION_UP, id[0]=0, x[0]=115.755905, y[0]=57.10852, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=3476830, downTime=3476753, deviceId=3, source=0x1002 }
    10-17 17:21:27.764 26228-26228/com.example.saling_wika.saling_wika V/Provider/Settings:  from settings cache , name = sound_effects_enabled , value = 0
    10-17 17:21:27.782 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{422cc988 token=android.os.BinderProxy@422cbf70 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert}}
    10-17 17:21:27.787 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@422cbf70
    10-17 17:21:27.803 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x609025c0) (w:720, h:1280, f:1)
    10-17 17:21:27.805 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61f17b60>
    10-17 17:21:27.806 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61f17b60>
    10-17 17:21:27.810 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: Trying to load lib /data/app-lib/com.example.saling_wika.saling_wika-2/libpocketsphinx_jni.so 0x421843e0
    10-17 17:21:27.811 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: Added shared lib /data/app-lib/com.example.saling_wika.saling_wika-2/libpocketsphinx_jni.so 0x421843e0
    10-17 17:21:27.811 26228-26228/com.example.saling_wika.saling_wika D/dalvikvm: No JNI_OnLoad found in /data/app-lib/com.example.saling_wika.saling_wika-2/libpocketsphinx_jni.so 0x421843e0, skipping init
    10-17 17:21:27.829 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: pocketsphinx.c(152): Parsed model-specific feature parameters from /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/feat.params
    10-17 17:21:27.866 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: feat.c(715): Initializing feature stream to type: '1s_c_d_dd', ceplen=13, CMN='current', VARNORM='no', AGC='none'
    10-17 17:21:27.866 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn.c(143): mean[0]= 12.00, mean[1..12]= 0.0
    10-17 17:21:27.866 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: acmod.c(164): Using subvector specification 0-12/13-25/26-38
    10-17 17:21:27.866 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: mdef.c(518): Reading model definition: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/mdef
    10-17 17:21:27.867 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: mdef.c(531): Found byte-order mark BMDF, assuming this is a binary mdef file
    10-17 17:21:27.867 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: bin_mdef.c(336): Reading binary model definition: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/mdef
    10-17 17:21:27.909 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: bin_mdef.c(516): 42 CI-phone, 137053 CD-phone, 3 emitstate/phone, 126 CI-sen, 5126 Sen, 29324 Sen-Seq
    10-17 17:21:27.910 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: tmat.c(206): Reading HMM transition probability matrices: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/transition_matrices
    10-17 17:21:27.912 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: acmod.c(117): Attempting to use PTM computation module
    10-17 17:21:27.922 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/means
    10-17 17:21:27.932 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(292): 42 codebook, 3 feature, size: 
    10-17 17:21:27.932 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 17:21:27.932 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 17:21:27.932 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 17:21:27.932 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(198): Reading mixture gaussian parameter: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/variances
    10-17 17:21:27.942 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(292): 42 codebook, 3 feature, size: 
    10-17 17:21:27.942 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 17:21:27.942 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 17:21:27.942 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(294):  128x13
    10-17 17:21:28.003 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ms_gauden.c(354): 222 variance values floored
    10-17 17:21:28.004 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(476): Loading senones from dump file /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/sendump
    10-17 17:21:28.004 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(500): BEGIN FILE FORMAT DESCRIPTION
    10-17 17:21:28.004 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(563): Rows: 128, Columns: 5126
    10-17 17:21:28.004 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(595): Using memory-mapped I/O for senones
    10-17 17:21:28.005 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ptm_mgau.c(835): Maximum top-N: 4
    10-17 17:21:28.005 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: phone_loop_search.c(114): State beam -225 Phone exit beam -225 Insertion penalty 0
    10-17 17:21:28.100 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(320): Allocating 137531 * 20 bytes (2686 KiB) for word entries
    10-17 17:21:28.100 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(333): Reading main dictionary: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/cmudict-en-us.dict
    10-17 17:21:28.784 26228-26228/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133422: Failed to add the word 'ay' (duplicate?); ignored
    10-17 17:21:28.784 26228-26228/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133423: Failed to add the word 'ay(2)' (duplicate?); ignored
    10-17 17:21:28.784 26228-26228/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133425: Failed to add the word 'kayo' (duplicate?); ignored
    10-17 17:21:28.784 26228-26228/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133427: Failed to add the word 'randall' (duplicate?); ignored
    10-17 17:21:28.784 26228-26228/com.example.saling_wika.saling_wika E/cmusphinx: ERROR: "dict.c", line 205: Line 133428: Failed to add the word 'si' (duplicate?); ignored
    10-17 17:21:28.784 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(213): Allocated 1007 KiB for strings, 1662 KiB for phones
    10-17 17:21:28.784 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(336): 133424 words read
    10-17 17:21:28.784 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(358): Reading filler dictionary: /storage/sdcard0/Android/data/com.example.saling_wika.saling_wika/files/sync/en-us-ptm/noisedict
    10-17 17:21:28.784 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(213): Allocated 0 KiB for strings, 0 KiB for phones
    10-17 17:21:28.785 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict.c(361): 5 words read
    10-17 17:21:28.785 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(396): Building PID tables for dictionary
    10-17 17:21:28.785 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(406): Allocating 42^3 * 2 bytes (144 KiB) for word-initial triphones
    10-17 17:21:28.883 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(132): Allocated 21336 bytes (20 KiB) for word-final triphones
    10-17 17:21:28.887 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: dict2pid.c(196): Allocated 21336 bytes (20 KiB) for single-phone word triphones
    10-17 17:21:28.887 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(456): Trying to read LM in trie binary format
    10-17 17:21:28.888 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(467): Header doesn't match
    10-17 17:21:28.888 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(189): Trying to read LM in arpa format
    10-17 17:21:28.896 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(70): No \data\ mark in LM file
    10-17 17:21:28.896 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(548): Trying to read LM in DMP format
    10-17 17:21:28.896 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_model_trie.c(630): ngrams 1=779, 2=14416, 3=46976
    10-17 17:21:29.076 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: lm_trie.c(399): Training quantizer
    10-17 17:21:29.137 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: lm_trie.c(407): Building LM trie
    10-17 17:21:30.637 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(99): 788 unique initial diphones
    10-17 17:21:30.642 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(148): 0 root, 0 non-root channels, 54 single-phone words
    10-17 17:21:30.643 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(186): Creating search tree
    10-17 17:21:30.644 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(192): before: 0 root, 0 non-root channels, 54 single-phone words
    10-17 17:21:30.693 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(326): after: max nonroot chan increased to 2220
    10-17 17:21:30.693 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(339): after: 256 root, 2092 non-root channels, 9 single-phone words
    10-17 17:21:30.693 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(157): fwdflat: min_ef_width = 4, max_sf_win = 25
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn_prior.c(131): cmn_prior_update: from < 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: 40.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: 10.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: 10.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.00 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: >
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: cmn_prior.c(149): cmn_prior_update: to   < 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: 97.14 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -21.08 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -5.67 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -4.40 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -2.49 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -2.76 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -1.59 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -3.63 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -2.21 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  0.83 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx:  1.41 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -0.75 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: -1.58 
    10-17 17:21:30.871 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: >
    10-17 17:21:30.915 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1553):      155 words recognized (5/fr)
    10-17 17:21:30.915 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1555):    46224 senones evaluated (1444/fr)
    10-17 17:21:30.915 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1559):    24618 channels searched (769/fr), 7168 1st, 2206 last
    10-17 17:21:30.915 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1562):      292 words for which last channels evaluated (9/fr)
    10-17 17:21:30.916 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1564):     1483 candidate words for entering last phone (46/fr)
    10-17 17:21:30.916 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1567): fwdtree 0.21 CPU 0.656 xRT
    10-17 17:21:30.916 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdtree.c(1570): fwdtree 0.22 wall 0.692 xRT
    10-17 17:21:30.916 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(302): Utterance vocabulary contains 3 words
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(948):      130 words recognized (4/fr)
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(950):      373 senones evaluated (12/fr)
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(952):      171 channels searched (5/fr)
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(954):      171 words searched (5/fr)
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(957):       88 word transitions (2/fr)
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(960): fwdflat 0.02 CPU 0.062 xRT
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search_fwdflat.c(963): fwdflat 0.02 wall 0.066 xRT
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1253): lattice start node <s>.0 end node </s>.19
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1279): Eliminated 2 nodes before end node
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1384): Lattice has 54 nodes, 23 links
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ps_lattice.c(1380): Bestpath score: -939
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ps_lattice.c(1384): Normalizer P(O) = alpha(</s>:19:30) = -66049
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ps_lattice.c(1441): Joint P(O,S) = -71441 P(S|O) = -5392
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(875): bestpath 0.00 CPU 0.000 xRT
    10-17 17:21:30.937 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(878): bestpath 0.00 wall 0.001 xRT
    10-17 17:21:30.942 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1030): bestpath 0.00 CPU 0.000 xRT
    10-17 17:21:30.942 26228-26228/com.example.saling_wika.saling_wika I/cmusphinx: INFO: ngram_search.c(1033): bestpath 0.00 wall 0.000 xRT
    10-17 17:21:30.949 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{4239e3c8 token=android.os.BinderProxy@4239d9a8 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.ConversionModule}}
    10-17 17:21:30.949 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.impl.PhoneWindow$DecorView{423a0788 I.E..... R.....ID 0,0-0,0}
    10-17 17:21:30.953 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{423adbe0 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.ConversionModule,ident = 3}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{423a0788 V.E..... R.....ID 0,0-0,0}
    10-17 17:21:30.953 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{4239e3c8 token=android.os.BinderProxy@4239d9a8 {com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.ConversionModule}}
    10-17 17:21:30.954 26228-26228/com.example.saling_wika.saling_wika I/Choreographer: Skipped 170 frames!  The application may be doing too much work on its main thread.
    10-17 17:21:30.956 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x61aba328) (w:720, h:1280, f:1)
    10-17 17:21:30.958 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x61f17b60>
    10-17 17:21:30.959 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x61f17b60>
    10-17 17:21:30.989 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x642fa270) (w:720, h:1280, f:1)
    10-17 17:21:30.991 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]window_type=1, is_framebuffer=0, errnum = 0
    10-17 17:21:30.991 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]surface->num_buffers=4, surface->num_frames=3, win_min_undequeued=1
    10-17 17:21:30.991 26228-26228/com.example.saling_wika.saling_wika I/MaliEGL: [Mali]max_allowed_dequeued_buffers=3
    10-17 17:21:30.991 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x642fa270) (w:720 h:1280 f:1)
    10-17 17:21:30.994 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x6467f088) (w:720, h:1280, f:1)
    10-17 17:21:30.995 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: setViewport 720x1280 <0x6467f210>
    10-17 17:21:30.999 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: onWindowFocus: null softInputMode=288 first=true flags=#1810100
    10-17 17:21:30.999 26228-26228/com.example.saling_wika.saling_wika V/InputMethodManager: START INPUT: com.android.internal.policy.impl.PhoneWindow$DecorView{423a0788 V.E..... R.....ID 0,0-720,1280} ic=null tba=android.view.inputmethod.EditorInfo@423b6f10 controlFlags=#104
    10-17 17:21:31.004 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: prepareDirty (0.00, 0.00, 720.00, 1280.00) opaque 1 <0x6467f210>
    10-17 17:21:31.005 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: finish <0x6467f210>
    10-17 17:21:31.040 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x5bd57b80) (w:112, h:88, f:1)
    10-17 17:21:31.044 26228-26228/com.example.saling_wika.saling_wika D/OpenGLRenderer: Flushing caches (mode 0)
    10-17 17:21:31.045 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61f074e8) (w:720 h:1280 f:1)
    10-17 17:21:31.045 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x60f468a0) (w:720 h:1280 f:1)
    10-17 17:21:31.046 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x609025c0) (w:720 h:1280 f:1)
    10-17 17:21:31.046 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x61aba328) (w:720 h:1280 f:1)
    10-17 17:21:31.356 26228-26228/com.example.saling_wika.saling_wika V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =ViewRoot{422e82d8 com.example.saling_wika.saling_wika/com.example.saling_wika.saling_wika.AudioToConvert,ident = 1}, this =com.android.internal.policy.impl.PhoneWindow$DecorView{422d0320 I.E..... R....... 0,0-720,1280}
    10-17 17:21:31.356 26228-26228/com.example.saling_wika.saling_wika D/ActivityThread: ACT-STOP_ACTIVITY_HIDE handled : 0 / android.os.BinderProxy@422cbf70
    10-17 17:21:32.953 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x5bd57b80) (w:112 h:88 f:1)
    10-17 17:21:33.010 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x609025c0) (w:144, h:88, f:1)
    10-17 17:21:34.949 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x609025c0) (w:144 h:88 f:1)
    10-17 17:21:35.021 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: create handle(0x62313c70) (w:160, h:88, f:1)
    10-17 17:21:36.951 26228-26228/com.example.saling_wika.saling_wika D/GraphicBuffer: close handle(0x62313c70) (w:160 h:88 f:1)
    
     
  • Randall Castillo

    Also we downloaded a 16khz .wav file and it converted successfully. We think there is a problem on our recording process, and maybe it has wrong khz.

    Here is our code for the recording .wav file.

    @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
            setSupportActionBar(toolbar);
    
            myAudioRecorder=new MediaRecorder();
    
            setButtonHandlers();
            enableButtons(false);
    
            bufferSize = AudioRecord.getMinBufferSize(8000,
                    AudioFormat.CHANNEL_CONFIGURATION_MONO,
                    AudioFormat.ENCODING_PCM_16BIT);
    
            DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
            ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                    this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
            drawer.setDrawerListener(toggle);
            toggle.syncState();
    
            NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
            navigationView.setNavigationItemSelectedListener(this);
        }
    
    private void enableButtons(boolean isRecording) {
            enableButton(R.id.btnStart,!isRecording);
            enableButton(R.id.btnStop,isRecording);
            }
    
     private void startRecording(){
    
            myAudioRecorder = new MediaRecorder();
            myAudioRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
            myAudioRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
            myAudioRecorder.setAudioEncoder(MediaRecorder.OutputFormat.AMR_NB);
            myAudioRecorder.setOutputFile(getFilename());
    
                try {
                    myAudioRecorder.prepare();
                    myAudioRecorder.start();
                }
    
                catch (IllegalStateException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
    
                catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
    
                isRecording = true;
                Toast.makeText(getApplicationContext(), "Recording started", Toast.LENGTH_SHORT).show();
    
        }
    
    private void stopRecording(){
    
                isRecording = false;
    
                myAudioRecorder.stop();
                myAudioRecorder.release();
                myAudioRecorder  = null;
                    Toast.makeText(getApplicationContext(), "Recording stopped", Toast.LENGTH_SHORT).show();
    
        }
    
     
    • Nickolay V. Shmyrev

      You can not use MediaRecorder to record PCM data, you have to use low level AudioRecord instead.

       
  • Randall Castillo

    May I please know what is the optimal samplerate for pocketsphinx android?

     
    • Nickolay V. Shmyrev

      16000

       
  • Randall Castillo

    Is there any way to use .gram files in decoder?

    For example:

    c.setString("-lm", new File(Environment.getExternalStorageDirectory() + "/Android/data/com.example.saling_wika.saling_wika/files/sync", "digits.gram").getPath());
    
     
    • Nickolay V. Shmyrev

      You need to use -jsgf instead of -lm:

       c.setString("-jsgf", new File(Environment.getExternalStorageDirectory() + "/Android/data/com.example.saling_wika.saling_wika/files/sync", "digits.gram").getPath());
      
       
  • Randall Castillo

    Thank you so much, Mr. Nikolay!

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.