comparison libmpdemux/stheader.h @ 5084:2fd327bf64fc

added get_sh_video/audio and realmedia seeking
author alex
date Fri, 15 Mar 2002 15:53:11 +0000
parents 544c1dae591c
children d72c3169a343
comparison
equal deleted inserted replaced
5083:ce6952225939 5084:2fd327bf64fc
76 void* context; // codec-specific stuff (usually HANDLE or struct pointer) 76 void* context; // codec-specific stuff (usually HANDLE or struct pointer)
77 HIC hic; // handle 77 HIC hic; // handle
78 void* video_out; 78 void* video_out;
79 } sh_video_t; 79 } sh_video_t;
80 80
81 sh_audio_t* get_sh_audio(demuxer_t *demuxer,int id);
82 sh_video_t* get_sh_video(demuxer_t *demuxer,int id);
81 sh_audio_t* new_sh_audio(demuxer_t *demuxer,int id); 83 sh_audio_t* new_sh_audio(demuxer_t *demuxer,int id);
82 sh_video_t* new_sh_video(demuxer_t *demuxer,int id); 84 sh_video_t* new_sh_video(demuxer_t *demuxer,int id);
85 void free_sh_audio(sh_audio_t *sh);
86 void free_sh_video(sh_video_t *sh);
83 87
84 int video_read_properties(sh_video_t *sh_video); 88 int video_read_properties(sh_video_t *sh_video);
85 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps); 89 int video_read_frame(sh_video_t* sh_video,float* frame_time_ptr,unsigned char** start,int force_fps);
86 90
87 #endif 91 #endif