Files
recycled-ni-libstb-hal/libeplayer3/include/common.h
martii c02a804944 libeplayer3: dynamically update pid list
Origin commit data
------------------
Branch: master
Commit: beac99d8b0
Author: martii <m4rtii@gmx.de>
Date: 2013-03-25 (Mon, 25 Mar 2013)


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

------------------
This commit was generated by Migit
2013-03-25 20:42:36 +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