OpenMAXBellagio 0.9.3
content_pipe_file.h
Go to the documentation of this file.
00001 
00026 #ifndef __CONTENT_PIPE_FILE_H__
00027 #define __CONTENT_PIPE_FILE_H__
00028 
00029 #include <unistd.h>
00030 #include <stdio.h>
00031 #include <malloc.h>
00032 #include <string.h>
00033 #include <fcntl.h>
00034 
00035 #include <OMX_Types.h>
00036 #include <OMX_ContentPipe.h>
00037 
00038 #include "omx_comp_debug_levels.h"
00039 
00040 typedef struct {
00041 
00042   /* public */
00043   CP_PIPETYPE pipe;
00044 
00045   /* private */
00046   int fd;
00047 
00048 } file_ContentPipe;
00049 
00050 #endif