Mercurial > mplayer.hg
view edl.h @ 29770:db80b9d20406
demuxer.c: Add initialization missing from previous commit
Reimar's previous commit ("Unbreak the demuxer-specific code in
video.c with e.g.") added the new field "non_interleaved" in
demux_stream structs, but this field was not initialized anywhere.
Under suitable circumstances this could cause a "Too many
video/audio packets in the buffer" error and failing playback. Fix
the problem by cleaning up the code that creates new instances of the
struct. Now fields will be initialized to 0 by default.
author | uau |
---|---|
date | Mon, 02 Nov 2009 01:40:09 +0000 |
parents | 4129c8cfa742 |
children | c1a3f1bbba26 |
line wrap: on
line source
// EDL version 0.6 #ifndef MPLAYER_EDL_H #define MPLAYER_EDL_H #define EDL_SKIP 0 #define EDL_MUTE 1 #define EDL_MUTE_START 1 #define EDL_MUTE_END 0 struct edl_record { float start_sec; float stop_sec; float length_sec; short action; struct edl_record* next; struct edl_record* prev; }; typedef struct edl_record* edl_record_ptr; extern char *edl_filename; // file to extract EDL entries from (-edl) extern char *edl_output_filename; // file to put EDL entries in (-edlout) void free_edl(edl_record_ptr next_edl_record); // free's entire EDL list. edl_record_ptr edl_parse_file(void); // fills EDL stack #endif /* MPLAYER_EDL_H */