mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-27 07:22:44 +02:00
rename libeplayer3-arm -> libplayer3
Origin commit data
------------------
Branch: master
Commit: e1b78787fd
Author: max_10 <max_10@gmx.de>
Date: 2019-06-15 (Sat, 15 Jun 2019)
Origin message was:
------------------
- rename libeplayer3-arm -> libplayer3
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
34
libeplayer3/include/common.h
Normal file
34
libeplayer3/include/common.h
Normal file
@@ -0,0 +1,34 @@
|
||||
#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);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user