mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-27 15:32:43 +02:00
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
21 lines
419 B
C
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
|