libeplayer3: implement Output class

This commit is contained in:
martii
2014-04-06 18:19:00 +02:00
parent 558b9410a8
commit cd3d91fa38
13 changed files with 377 additions and 679 deletions

View File

@@ -31,7 +31,7 @@ typedef enum {
typedef struct Track_s {
std::string Name;
int Id;
int pid;
/* new field for ffmpeg - add at the end so no problem
* can occur with not changed srt saa container
@@ -53,7 +53,7 @@ typedef struct Track_s {
int ac3flags;
Track_s() : Id(-1), language(NULL), duration(-1), avfc(NULL), stream(NULL), pending(0), is_static(0), chapter_start(0), chapter_end(0), ac3flags(-1) {}
Track_s() : pid(-1), language(NULL), duration(-1), avfc(NULL), stream(NULL), pending(0), is_static(0), chapter_start(0), chapter_end(0), ac3flags(-1) {}
} Track_t;
struct Player;