mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
26 lines
479 B
C++
26 lines
479 B
C++
#ifndef COMMON_H_
|
|
#define COMMON_H_
|
|
|
|
#include "container.h"
|
|
#include "output.h"
|
|
#include "manager.h"
|
|
#include "playback.h"
|
|
#include <pthread.h>
|
|
#include <stdint.h>
|
|
|
|
class Player {
|
|
public: //FIXME
|
|
PlaybackHandler_t *playback;
|
|
ContainerHandler_t *container;
|
|
ManagerHandler_t *manager;
|
|
int64_t *currentAudioPtsP;
|
|
public:
|
|
Player();
|
|
~Player();
|
|
|
|
Output output;
|
|
};
|
|
|
|
int container_ffmpeg_update_tracks(Player * context, const char *filename);
|
|
#endif
|