1 #ifndef __redcode_format_h_included__
2 #define __redcode_format_h_included__
11 struct redcode_handle * redcode_open(const char * fname);
12 void redcode_close(struct redcode_handle * handle);
14 long redcode_get_length(struct redcode_handle * handle);
16 struct redcode_frame * redcode_read_video_frame(
17 struct redcode_handle * handle, long frame);
18 struct redcode_frame * redcode_read_audio_frame(
19 struct redcode_handle * handle, long frame);
21 void redcode_free_frame(struct redcode_frame * frame);