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: 61a2a148d5
Author: vanhofen <vanhofen@gmx.de>
Date: 2023-01-24 (Tue, 24 Jan 2023)
Origin message was:
------------------
- libeplayer3: sync with max_10
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
43 lines
877 B
C
43 lines
877 B
C
#ifndef COMMON_H_
|
|
#define COMMON_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "container.h"
|
|
#include "output.h"
|
|
#include "manager.h"
|
|
#include "playback.h"
|
|
#include <pthread.h>
|
|
|
|
typedef struct PlayFiles_t
|
|
{
|
|
char *szFirstFile;
|
|
char *szSecondFile;
|
|
char *szFirstMoovAtomFile;
|
|
char *szSecondMoovAtomFile;
|
|
uint64_t iFirstFileSize;
|
|
uint64_t iSecondFileSize;
|
|
uint64_t iFirstMoovAtomOffset;
|
|
uint64_t iSecondMoovAtomOffset;
|
|
} PlayFiles_t;
|
|
|
|
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);
|
|
|
|
const char *GetGraphicSubPath();
|
|
int32_t GetGraphicWindowWidth();
|
|
int32_t GetGraphicWindowHeight();
|
|
|
|
void E2iSendMsg(const char *format, ...);
|
|
void E2iStartMsg(void);
|
|
void E2iEndMsg(void);
|
|
|
|
#endif
|