parent
b493895fbc
commit
a72f230e9b
@ -1,15 +0,0 @@ |
||||
package com.frank.ffmpeg.format; |
||||
|
||||
/** |
||||
* layout of video |
||||
* Created by frank on 2018/6/18. |
||||
*/ |
||||
|
||||
public class VideoLayout { |
||||
|
||||
//horizontal join
|
||||
public final static int LAYOUT_HORIZONTAL = 1; |
||||
//vertical join
|
||||
public final static int LAYOUT_VERTICAL = 2; |
||||
|
||||
} |
@ -0,0 +1,15 @@ |
||||
package com.frank.ffmpeg.format |
||||
|
||||
/** |
||||
* layout of video |
||||
* Created by frank on 2018/6/18. |
||||
*/ |
||||
|
||||
object VideoLayout { |
||||
|
||||
//horizontal join |
||||
const val LAYOUT_HORIZONTAL = 1 |
||||
//vertical join |
||||
const val LAYOUT_VERTICAL = 2 |
||||
|
||||
} |
@ -1,11 +0,0 @@ |
||||
package com.frank.ffmpeg.listener; |
||||
|
||||
/** |
||||
* listener of FFmpeg processing |
||||
* Created by frank on 2019/11/11. |
||||
*/ |
||||
public interface OnHandleListener { |
||||
void onBegin(); |
||||
default void onProgress(int progress, int duration){} |
||||
void onEnd(int resultCode, String resultMsg); |
||||
} |
@ -0,0 +1,11 @@ |
||||
package com.frank.ffmpeg.listener |
||||
|
||||
/** |
||||
* listener of FFmpeg processing |
||||
* Created by frank on 2019/11/11. |
||||
*/ |
||||
interface OnHandleListener { |
||||
fun onBegin() |
||||
fun onProgress(progress: Int, duration: Int) |
||||
fun onEnd(resultCode: Int, resultMsg: String) |
||||
} |
@ -1,11 +0,0 @@ |
||||
package com.frank.ffmpeg.listener; |
||||
|
||||
/** |
||||
* listener of RecyclerView item clicking |
||||
* Created by frank on 2018/6/6. |
||||
*/ |
||||
|
||||
public interface OnItemClickListener { |
||||
|
||||
void onItemClick(int position); |
||||
} |
@ -0,0 +1,11 @@ |
||||
package com.frank.ffmpeg.listener |
||||
|
||||
/** |
||||
* listener of RecyclerView item clicking |
||||
* Created by frank on 2018/6/6. |
||||
*/ |
||||
|
||||
interface OnItemClickListener { |
||||
|
||||
fun onItemClick(position: Int) |
||||
} |
Loading…
Reference in new issue