libeplayer3-arm: cleanup types, use Context_t in commands

Origin commit data
------------------
Branch: master
Commit: 76ff23f487
Author: max_10 <max_10@gmx.de>
Date: 2018-03-07 (Wed, 07 Mar 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
max_10
2018-03-07 23:59:23 +01:00
parent 72f70359b2
commit a51ed97fb2
32 changed files with 194 additions and 182 deletions

View File

@@ -10,11 +10,11 @@ typedef enum { eNone, eAudio, eVideo} eWriterType_t;
typedef struct
{
int fd;
unsigned char *data;
uint8_t *data;
unsigned int len;
unsigned long long int Pts;
uint64_t Pts;
unsigned long long int Dts;
unsigned char *private_data;
uint8_t *private_data;
unsigned int private_size;
unsigned int FrameRate;
unsigned int FrameScale;
@@ -38,7 +38,7 @@ typedef struct WriterCaps_s
typedef struct Writer_s
{
int (* reset)();
int (* writeData)(void *);
int (* writeData)(WriterAVCallData_t *);
WriterCaps_t *caps;
} Writer_t;