mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
Origin commit data
------------------
Branch: master
Commit: 35da5243e7
Author: martii <m4rtii@gmx.de>
Date: 2013-07-26 (Fri, 26 Jul 2013)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
19 lines
411 B
C
19 lines
411 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, int initial);
|
|
#endif
|