libeplayer3-arm: cleanup types, use Context_t in commands

Origin commit data
------------------
Branch: master
Commit: 443d2d6b6c
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
committed by Frankenstone
parent 3433ec3f63
commit 579bfb2a3a
32 changed files with 194 additions and 182 deletions

View File

@@ -26,6 +26,9 @@ typedef enum {
PLAYBACK_METADATA
} PlaybackCmd_t;
struct Context_s;
typedef struct Context_s Context_t;
typedef struct PlaybackHandler_s
{
char *Name;
@@ -51,7 +54,7 @@ typedef struct PlaybackHandler_s
uint8_t isSubtitle;
uint8_t abortRequested;
int32_t (* Command)(/*Context_t*/void *, PlaybackCmd_t, void *);
int32_t (* Command)(Context_t *, PlaybackCmd_t, void *);
char *uri;
off_t size;
uint8_t noprobe; /* hack: only minimal probing in av_find_stream_info */