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: 6c1f7c13bd
Author: martii <m4rtii@gmx.de>
Date: 2014-04-06 (Sun, 06 Apr 2014)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
26 lines
469 B
C++
26 lines
469 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;
|
|
int64_t *currentAudioPtsP;
|
|
public:
|
|
Player();
|
|
~Player();
|
|
|
|
Output output;
|
|
Manager manager;
|
|
};
|
|
|
|
int container_ffmpeg_update_tracks(Player * context, const char *filename);
|
|
#endif
|