Files
recycled-ni-libstb-hal/libeplayer3/include/common.h
martii 68ea82d529 libeplayer3: cleanup
Origin commit data
------------------
Branch: master
Commit: 6f384fc6b6
Author: martii <m4rtii@gmx.de>
Date: 2013-06-08 (Sat, 08 Jun 2013)


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

------------------
This commit was generated by Migit
2013-06-08 12:05:36 +02:00

19 lines
398 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;
int container_ffmpeg_update_tracks(Context_t *context, char *filename);
#endif