app/src/main/java/com/anyun/h264/service/H264EncodeServiceClient.java
@@ -191,14 +191,14 @@
     * @param endTime 结束时间(格式:YYMMDDHHmmss,例如:240101235959)
     * @return 资源列表,如果失败返回null
     */
    public List<ResourceInfo> getResourceList(String startTime, String endTime) {
    public List<ResourceInfo> getResourceList(String startTime, String endTime,boolean useTFCard) {
        if (!isServiceBound()) {
            Log.e(TAG, "Service is not bound");
            return null;
        }
        
        try {
            List<ResourceInfo> result = service.getResourceList(startTime, endTime);
            List<ResourceInfo> result = service.getResourceList(startTime, endTime,useTFCard);
            Log.d(TAG, "getResourceList returned " + (result != null ? result.size() : 0) + " resources");
            return result;
        } catch (RemoteException e) {