Files
libstb-hal/libeplayer3/include/common.h
2013-11-09 21:19:21 +01:00

21 lines
419 B
C

#ifndef COMMON_H_
#define COMMON_H_
#include "container.h"
#include "output.h"
#include "manager.h"
#include "playback.h"
#include <pthread.h>
typedef struct Context_s {
PlaybackHandler_t * playback;
ContainerHandler_t * container;
OutputHandler_t * output;
ManagerHandler_t * manager;
} Context_t;
#ifdef MARTII
int container_ffmpeg_update_tracks(Context_t *context, char *filename);
#endif
#endif