Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/aampcli/Aampcli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
* @file Aampcli.cpp
* @brief Stand alone AAMP player with command line interface.
*/
#include <unistd.h>
#include "Aampcli.h"
#include "scte35/AampSCTE35.h"
#include <unistd.h>

Aampcli mAampcli;
const char *gApplicationPath = NULL;
Expand Down Expand Up @@ -371,7 +371,7 @@ static int main_func(int argc, char **argv)
AAMPCLI_PRINTF("**************************************************************************\n");
AAMPCLI_PRINTF("** ADVANCED ADAPTIVE MEDIA PLAYER (AAMP) - COMMAND LINE INTERFACE (CLI) **\n");
AAMPCLI_PRINTF("**************************************************************************\n");
AAMPCLI_PRINTF("process: %d\n", getpid()); //Used by L2 tests
AAMPCLI_PRINTF("PID: %d\n", static_cast<int>(getpid()));
mAampcli.initPlayerLoop(0,NULL);
mAampcli.newPlayerInstance();

Expand Down
Loading