-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-Update pipeline code. WIP. Needs to be tested.
- Loading branch information
1 parent
9b5c857
commit f102809
Showing
13 changed files
with
1,915 additions
and
53 deletions.
There are no files selected for viewing
25 changes: 24 additions & 1 deletion
25
src/main/java/com/windhoverlabs/com/video/CCustomFrameProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,26 @@ | ||
package com.windhoverlabs.com.video; | ||
|
||
public class CCustomFrameProcessor {} | ||
import com.windhoverlabs.com.video.MMC_PipelineCfg.MMC_CustomFrameProcessorCfg_t; | ||
|
||
public class CCustomFrameProcessor { | ||
|
||
public EReturnCode setConfig(MMC_CustomFrameProcessorCfg_t customFrameProcessorCfg) { | ||
// TODO Auto-generated method stub | ||
return null; | ||
} | ||
|
||
public EReturnCode Initialize() { | ||
// TODO Auto-generated method stub | ||
return null; | ||
} | ||
|
||
public void SetPipelineID(int pipelineID) { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
public void SetChannelID(int channelID) { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
} |
31 changes: 30 additions & 1 deletion
31
src/main/java/com/windhoverlabs/com/video/CCustomPacketProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
package com.windhoverlabs.com.video; | ||
|
||
public class CCustomPacketProcessor {} | ||
import com.windhoverlabs.com.video.MMC_PipelineCfg.MMC_CustomPacketProcessorCfg_t; | ||
import org.bytedeco.ffmpeg.avcodec.AVPacket; | ||
|
||
public class CCustomPacketProcessor { | ||
|
||
public EReturnCode setConfig(MMC_CustomPacketProcessorCfg_t customPacketProcessorCfg) { | ||
// TODO Auto-generated method stub | ||
return null; | ||
} | ||
|
||
public EReturnCode Initialize() { | ||
// TODO Auto-generated method stub | ||
return null; | ||
} | ||
|
||
public void SetPipelineID(int pipelineID) { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
public void SetChannelID(int channelID) { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
|
||
public EReturnCode ProcessPacket(AVPacket packet, AVPacket customizedPacket) { | ||
// TODO Auto-generated method stub | ||
return null; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.