Windsander / Android-UltimateGPUImage

provide video record method with filter and other cool staff. Yes, It's a full functional video recorder
199 stars 37 forks source link

加滤镜后录制的视频,大部分都不能播放。 #9

Closed LinMuSongzi closed 7 years ago

Windsander commented 7 years ago

能发一份日志给我吗?我想周末的时候调一下~

LinMuSongzi commented 7 years ago

public static final int TIMEOUT_USEC = 10000;

// 输出视频参数配置
public static final String MIME_VIDEO_TYPE = "video/avc";       // H.264 Advanced Video Coding
public static final int VIDEO_FRAME_RATE = 40;                  // fps
public static final int IFRAME_INTERVAL = 1;                    // 5 seconds between I-frames
public static final int VIDEO_BIT_RATE = 800000;                // 默认 kbps
public static final int VIDEO_RECORD_WIDTH = 480;
public static final int VIDEO_RECORD_HEIGH = 640;
public static final float VIDEO_ASPECT_RATIO = 4 / 3f;         // 宽高比
/** 其余的视频参数,由当前机型动态适配算法提供 */

// 输出音频参数配置
public static final String MIME_AUDIO_TYPE = "audio/mp4a-latm";
public static final int AUDIO_FORMAT = AudioFormat.ENCODING_PCM_16BIT;
public static final int SAMPLES_PER_FRAME = 1024 * 2;               // AAC, frameBytes/frame/channel
public static final int FRAMES_PER_BUFFER = 25;                 // AAC, frame/buffer/sec
public static final int AUDIO_SAMPLE_RATE = 44100;              // 44100hz
public static final int AUDIO_BIT_RATE = 128000;                 // bps  比特率 = 采样率 x 采用位数 x声道数
public static final int CHANNEL_CONFIG = CHANNEL_IN_MONO;     //CHANNEL_IN_STEREO 立体声
public static final int CHANNEL_COUNT = 1;                      // 1 channel

这些事录制的配置。然后这个项目里。我基本不改太多主业务,就只是暴露一些其他属性而已。或许是否是录制编码的问题呢。因为我在 vivo 22 api 上是可以用七牛播放器播放。在 华为note8 7.0 api是录制播放不成功的。

** 开启camera时的log ** 05-16 12:01:05.720 31777-31777/com.ifeimo.videoeditor I/hwaps: JNI_OnLoad 05-16 12:01:05.842 31777-31777/com.ifeimo.videoeditor I/AppManager: [printAllActivity]------------------------------ 05-16 12:01:05.842 31777-31777/com.ifeimo.videoeditor I/AppManager: [printAllActivity]com.ifeimo.videoeditor.ui.activity.MainActivity@a06453e 05-16 12:01:05.842 31777-31777/com.ifeimo.videoeditor I/AppManager: [printAllActivity]com.ifeimo.videoeditor.ui.activity.CameraRecordActivity@930d9e4 05-16 12:01:05.842 31777-31777/com.ifeimo.videoeditor I/AppManager: [printAllActivity]------------------------------ 05-16 12:01:05.868 31777-31777/com.ifeimo.videoeditor I/BitmapFactory: set decoder allocator to gralloc 05-16 12:01:05.869 31777-31777/com.ifeimo.videoeditor I/gralloc: alloc_device_alloc:564: Alloc handle(0xd0e69000): interfmt=1, stride=192, size=122880, usage=0x2000003 05-16 12:01:05.871 31777-31777/com.ifeimo.videoeditor I/gralloc: alloc_device_free:586: Free handle(0xd0e69000) 05-16 12:01:05.884 31777-31777/com.ifeimo.videoeditor E/libEGL: call to OpenGL ES API with no current context (logged once per thread) 05-16 12:01:05.923 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: surfaceWidth = 1440 surfaceheight = 2434 05-16 12:01:05.958 31777-31777/com.ifeimo.videoeditor E/Camera: Camera new cameraInitNormal:0 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 1080 height = 1920 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 1080 height = 1440 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 960 height = 1280 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 720 height = 1280 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 720 height = 960 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 720 height = 720 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 480 height = 640 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 288 height = 352 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 240 height = 320 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 144 height = 208 05-16 12:01:05.959 31777-31777/com.ifeimo.videoeditor I/VideoRecordManager: getCloselyPreSize: height = 144 height = 176 05-16 12:01:05.961 31777-31777/com.ifeimo.videoeditor W/Camera::: Method: VideoRecordManager.openCamera (VideoRecordManager.java:141) ┇ Thread: main ┇ Time: 2017-05-16 12:01:05.961 ┇ size = 640480 05-16 12:01:05.972 31777-31777/com.ifeimo.videoeditor W/Camera::: Method: VideoRecordManager.openCamera (VideoRecordManager.java:153) ┇ Thread: main ┇ Time: 2017-05-16 12:01:05.972 ┇ record size = 640480

***** 录制中,录制完 * 05-16 12:02:22.600 31777-4082/com.ifeimo.videoeditor I/OMXClient: MuxOMX ctor 05-16 12:02:22.621 31777-4082/com.ifeimo.videoeditor I/IMG-OMX: IMG_OMXLibWrapper library libomx_vxd.so mLibHandle:0xf136d8d0

                                                            [ 05-16 12:02:22.622   581: 2171 I/         ]
                                                            virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:22.628 31777-4082/com.ifeimo.videoeditor I/IMG-OMX: IMG_OMXLibWrapper library libomx_vxe.so mLibHandle:0xf136da90 05-16 12:02:22.628 31777-4082/com.ifeimo.videoeditor E/IMGTOPAZ: OMX_Init done 05-16 12:02:22.628 31777-4082/com.ifeimo.videoeditor I/OMXMaster: makeComponentInstance(OMX.google.aac.encoder) in imo.videoeditor process 05-16 12:02:22.635 31777-4082/com.ifeimo.videoeditor I/ACodec: In onAllocateComponent create compenent, codec name: OMX.google.aac.encoder 05-16 12:02:22.637 31777-4083/com.ifeimo.videoeditor W/SimpleSoftOMXComponent: onChangeState mState= 1, mTargetState = 1, state = 2 05-16 12:02:22.637 31777-4083/com.ifeimo.videoeditor W/SimpleSoftOMXComponent: checkTransitions port is not populate 05-16 12:02:22.637 31777-4082/com.ifeimo.videoeditor W/SimpleSoftOMXComponent: checkTransitions mState = 1, mTargetState = 2 05-16 12:02:22.637 31777-4083/com.ifeimo.videoeditor W/SimpleSoftOMXComponent: onChangeState mState= 2, mTargetState = 2, state = 3 05-16 12:02:22.637 31777-4083/com.ifeimo.videoeditor W/SimpleSoftOMXComponent: checkTransitions mState = 2, mTargetState = 3 05-16 12:02:22.641 31777-4088/com.ifeimo.videoeditor I/OMXClient: MuxOMX ctor 05-16 12:02:22.648 31777-4088/com.ifeimo.videoeditor I/ACodec: In onAllocateComponent create compenent, codec name: OMX.IMG.TOPAZ.VIDEO.Encoder 05-16 12:02:22.650 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000001 = 2130706433 05-16 12:02:22.651 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000005 = 2130706437 05-16 12:02:22.652 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000002 = 2130706434 05-16 12:02:22.652 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000006 = 2130706438 05-16 12:02:22.654 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x17 = 23 05-16 12:02:22.654 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x18 = 24 05-16 12:02:22.655 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000011 = 2130706449

                                                           [ 05-16 12:02:22.655   581: 2171 I/         ]
                                                           virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:22.655 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x16 = 22 05-16 12:02:22.656 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000007 = 2130706439 05-16 12:02:22.656 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000008 = 2130706440 05-16 12:02:22.657 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x19 = 25 05-16 12:02:22.663 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x1a = 26 05-16 12:02:22.664 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x1b = 27 05-16 12:02:22.665 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x1c = 28 05-16 12:02:22.666 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000003 = 2130706435 05-16 12:02:22.667 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000009 = 2130706441 05-16 12:02:22.670 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f00000c = 2130706444 05-16 12:02:22.670 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000012 = 2130706450 05-16 12:02:22.671 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f00000a = 2130706442 05-16 12:02:22.671 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f00000b = 2130706443 05-16 12:02:22.672 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000789 = 2130708361 05-16 12:02:22.673 31777-4088/com.ifeimo.videoeditor I/ACodec: setupAVCEncoderParameters with [profile: Baseline] [level: Level52] 05-16 12:02:22.673 31777-4088/com.ifeimo.videoeditor I/ACodec: [OMX.IMG.TOPAZ.VIDEO.Encoder] cannot encode color aspects. Ignoring. 05-16 12:02:22.673 31777-4088/com.ifeimo.videoeditor I/ACodec: [OMX.IMG.TOPAZ.VIDEO.Encoder] cannot encode HDR static metadata. Ignoring. 05-16 12:02:22.673 31777-4088/com.ifeimo.videoeditor I/ACodec: setupVideoEncoder succeeded 05-16 12:02:22.674 31777-4088/com.ifeimo.videoeditor W/ACodec: do not know color format 0x7f000789 = 2130708361 05-16 12:02:22.723 31777-4081/com.ifeimo.videoeditor I/GlUtil: Method: EGLCore.queryBandState (EGLCore.java:136) ┇ Thread: TextureMovieEncoder ┇ Time: 2017-05-16 12:02:22.723 ┇ EGL_RENDER_BUFFER[[I@31ca322] 05-16 12:02:22.872 31777-4101/com.ifeimo.videoeditor I/AudioRecordPermission: remindWithResult:false 05-16 12:02:22.875 31777-4101/com.ifeimo.videoeditor I/HwAudioRecordImpl: HwAudioRecordImpl 05-16 12:02:22.875 31777-4101/com.ifeimo.videoeditor I/HwAudioRecordImpl: checkRecordActive 05-16 12:02:22.899 31777-4101/com.ifeimo.videoeditor I/HwAudioRecordImpl: sendStateChangedIntent, state=3 05-16 12:02:23.033 31777-4101/com.ifeimo.videoeditor I/MPEG4Writer: limits: 4294967295/0 bytes/us, bit rate: -1 bps and the estimated moov size 3193 bytes 05-16 12:02:23.035 31777-4115/com.ifeimo.videoeditor I/MPEG4Writer: setStartTimestampUs: 654665838627 05-16 12:02:23.035 31777-4115/com.ifeimo.videoeditor I/MPEG4Writer: Earliest track starting time: 654665838627 05-16 12:02:23.036 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1 05-16 12:02:23.049 31777-4116/com.ifeimo.videoeditor I/MPEG4Writer: setStartTimestampUs: 654665894598 05-16 12:02:23.053 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 20

                                                                [ 05-16 12:02:23.055   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.120 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:23.121   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.198 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 3

                                                                [ 05-16 12:02:23.221   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.232 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.254   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.269 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1 05-16 12:02:23.283 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.287   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.431 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:23.453   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.472 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.487   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.507 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.521   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.540 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.554   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.576 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1 05-16 12:02:23.588 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1 05-16 12:02:23.771 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:23.787   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.811 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.820   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.840 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.853   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.875 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.887   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.910 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.920   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.938 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.953   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:23.976 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:23.986   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.043 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:24.053   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.110 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:24.119   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.136 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.152   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.170 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.186   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.206 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.220   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.239 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.253   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.306 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:24.319   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.341 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.353   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.375 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.386   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.411 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.419   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.440 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.452   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.507 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:24.519   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.538 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.552   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.572 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.586   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.624 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.652   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.678 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:24.686   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.713 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.719   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.806 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 3

                                                                [ 05-16 12:02:24.818   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.835 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.852   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.872 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:24.885   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:24.974 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:24.985   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.109 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 3

                                                                [ 05-16 12:02:25.118   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.177 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 3

                                                                [ 05-16 12:02:25.184   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.242 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2 05-16 12:02:25.307 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:25.317   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.369 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 3

                                                                [ 05-16 12:02:25.384   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.442 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:25.451   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.471 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:25.484   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.511 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:25.518   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.542 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:25.550   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.609 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:25.617   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.704 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 3

                                                                [ 05-16 12:02:25.717   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.742 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:25.750   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.773 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:25.783   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.846 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:25.850   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.911 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:25.917   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:25.946 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:25.950   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.006 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:26.017   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.047 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:26.050   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.139 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 3

                                                                [ 05-16 12:02:26.150   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.197 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:26.216   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.245 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:26.250   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.291 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2 05-16 12:02:26.304 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:26.316   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.437 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:26.449   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.475 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:26.482   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.506 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:26.516   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.573 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:26.582   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.624 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2 05-16 12:02:26.637 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:26.648   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.831 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2 05-16 12:02:26.839 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:26.849   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:26.923 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2 05-16 12:02:26.940 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:26.948   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.131 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2 05-16 12:02:27.138 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.148   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.206 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:27.214   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.291 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:27.315   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.331 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.348   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.364 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1 05-16 12:02:27.372 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.380   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.490 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:27.514   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.525 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.547   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.558 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.581   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.591 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.614   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.624 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.647   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.667 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.681   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.701 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.714   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.732 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.747   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.767 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.781   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.799 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1 05-16 12:02:27.810 31777-4116/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.814   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.832 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.847   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:27.870 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1 05-16 12:02:27.876 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 1

                                                                [ 05-16 12:02:27.880   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:28.075 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2

                                                                [ 05-16 12:02:28.080   581: 2171 I/         ]
                                                                virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:28.175 31777-4115/com.ifeimo.videoeditor W/MPEG4Writer: 0-duration samples found: 2 05-16 12:02:28.177 31777-31777/com.ifeimo.videoeditor I/CameraRecordFragment: 第 1段视频的时间为 55 05-16 12:02:28.179 31777-31777/com.ifeimo.videoeditor I/BitmapFactory: set decoder allocator to gralloc

                                                                   [ 05-16 12:02:28.180   581: 2171 I/         ]
                                                                   virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:28.182 31777-31777/com.ifeimo.videoeditor I/gralloc: alloc_device_alloc:564: Alloc handle(0xd2bb0800): interfmt=1, stride=192, size=122880, usage=0x2000003 05-16 12:02:28.191 31777-31777/com.ifeimo.videoeditor I/gralloc: alloc_device_free:586: Free handle(0xd2bb0800) 05-16 12:02:28.203 31777-4116/com.ifeimo.videoeditor I/MPEG4Writer: Received total/0-length (224/0) buffers and encoded 224 frames. - Audio 05-16 12:02:28.203 31777-4116/com.ifeimo.videoeditor I/MPEG4Writer: Audio track drift time: 0 us 05-16 12:02:28.203 31777-4115/com.ifeimo.videoeditor I/MPEG4Writer: Received total/0-length (304/0) buffers and encoded 304 frames. - Video 05-16 12:02:28.233 31777-4099/com.ifeimo.videoeditor I/MPEG4Writer: The mp4 file will not be streamable. 05-16 12:02:28.275 31777-4101/com.ifeimo.videoeditor I/HwAudioRecordImpl: sendStateChangedIntent, state=1 05-16 12:02:28.277 31777-4101/com.ifeimo.videoeditor I/HwAudioRecordImpl: sendStateChangedIntent, state=1 05-16 12:02:28.279 31777-4083/com.ifeimo.videoeditor W/SimpleSoftOMXComponent: onChangeState mState= 3, mTargetState = 3, state = 2 05-16 12:02:28.280 31777-4083/com.ifeimo.videoeditor W/SimpleSoftOMXComponent: onChangeState mState= 2, mTargetState = 2, state = 1 05-16 12:02:28.280 31777-4083/com.ifeimo.videoeditor W/SimpleSoftOMXComponent: checkTransitions mState = 2, mTargetState = 1

                                                                           [ 05-16 12:02:28.280   581: 2171 I/         ]
                                                                           virtual buffer_md_t *hw::COutMetaSplit::splitOutMeta(hw::CDataTable &, hw::ISensorModuleSpec *), ae_state=2, trigger_id=0, preflash_state=0, need_lcd_compension=0,flash_state=2, capflash_ae_effect=0, resume_ae_doing=0ae_mode=1, ae_precapture=0

05-16 12:02:28.293 31777-4082/com.ifeimo.videoeditor I/IMG-OMX: ~IMG_OMXLibWrapper 05-16 12:02:28.294 31777-4082/com.ifeimo.videoeditor I/IMG-OMX: ~IMG_OMXLibWrapper 05-16 12:02:28.294 31777-4082/com.ifeimo.videoeditor E/IMGTOPAZ: OMX_Deinit done

Windsander commented 7 years ago

好的,辛苦了。我周末看一下。