libeplayer3: make ffmpeg data available to manager, output and writer

Origin commit data
------------------
Branch: master
Commit: 6328d3746e
Author: martii <m4rtii@gmx.de>
Date: 2014-04-05 (Sat, 05 Apr 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2014-04-05 10:16:30 +02:00
parent a33e7bfbd6
commit d35b56149d
5 changed files with 39 additions and 3 deletions

View File

@@ -4,6 +4,12 @@
#include <stdio.h>
#include <stdint.h>
#include <libavutil/avutil.h>
#include <libavutil/time.h>
#include <libavformat/avformat.h>
#include <libswresample/swresample.h>
#include <libavutil/opt.h>
typedef enum { eNone, eAudio, eVideo, eGfx } eWriterType_t;
typedef struct {
@@ -18,6 +24,10 @@ typedef struct {
unsigned int Width;
unsigned int Height;
unsigned char Version;
/* context from ffmpeg */
AVFormatContext *avfc;
/* stream from ffmpeg */
AVStream *stream;
} WriterAVCallData_t;
typedef struct WriterCaps_s {