summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-12-27 14:40:56 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-12-27 14:40:56 +0000
commit52dab179cb12f8e8870d9aab97183ca4bcd118e7 (patch)
treed37c427473b6f1af32b1d2053fefd338bc3dde18
parent4fbcbaacbcc935c5f4497573e6fc59b29f0640e5 (diff)
downloadmpv-52dab179cb12f8e8870d9aab97183ca4bcd118e7.tar.bz2
mpv-52dab179cb12f8e8870d9aab97183ca4bcd118e7.tar.xz
Introduce a sh_common struct that contains the parts in common by the audio, video
and sub "stream headers". One reason for this is to help avoid/make more obvious things like members with the same function but different name (extradata vs. codecdata etc.), or members with the same name but different semantics (pts for audio vs. pts for video). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30128 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libmpdemux/stheader.h44
1 files changed, 25 insertions, 19 deletions
diff --git a/libmpdemux/stheader.h b/libmpdemux/stheader.h
index a64e65fb73..99ae63ad0d 100644
--- a/libmpdemux/stheader.h
+++ b/libmpdemux/stheader.h
@@ -25,13 +25,31 @@
// Stream headers:
+#define SH_COMMON \
+ demux_stream_t *ds; \
+ struct codecs_st *codec; \
+ unsigned int format; \
+ int initialized; \
+ float stream_delay; /* number of seconds stream should be delayed (according to dwStart or similar) */ \
+ /* things needed for parsing */ \
+ int needs_parsing; \
+ struct AVCodecContext *avctx; \
+ struct AVCodecParserContext *parser; \
+ /* audio: last known pts value in output from decoder \
+ * video: predicted/interpolated PTS of the current frame */ \
+ double pts; \
+ /* codec-specific: */ \
+ void* context; /* codec-specific stuff (usually HANDLE or struct pointer) */ \
+ char* lang; /* track language */ \
+ int default_track; \
+
+typedef struct {
+ SH_COMMON
+} sh_common_t;
+
typedef struct {
+ SH_COMMON
int aid;
- demux_stream_t *ds;
- struct codecs_st *codec;
- unsigned int format;
- int initialized;
- float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar)
// output format:
int sample_format;
int samplerate;
@@ -63,28 +81,19 @@ typedef struct {
AVIStreamHeader audio;
WAVEFORMATEX* wf;
// codec-specific:
- void* context; // codec-specific stuff (usually HANDLE or struct pointer)
unsigned char* codecdata; // extra header data passed from demuxer to codec
int codecdata_len;
- double pts; // last known pts value in output from decoder
int pts_bytes; // bytes output by decoder after last known pts
- char* lang; // track language
- int default_track;
} sh_audio_t;
typedef struct {
+ SH_COMMON
int vid;
- demux_stream_t *ds;
- struct codecs_st *codec;
- unsigned int format;
- int initialized;
float timer; // absolute time in video stream, since last start/seek
- float stream_delay; // number of seconds stream should be delayed (according to dwStart or similar)
// frame counters:
float num_frames; // number of frames played
int num_frames_decoded; // number of frames decoded
// timing (mostly for mpeg):
- double pts; // predicted/interpolated PTS of the current frame
double i_pts; // PTS for the _next_ I/P frame
float next_frame_time;
double last_pts;
@@ -108,11 +117,10 @@ typedef struct {
AVIStreamHeader video;
BITMAPINFOHEADER* bih;
void* ImageDesc; // for quicktime codecs
- // codec-specific:
- void* context; // codec-specific stuff (usually HANDLE or struct pointer)
} sh_video_t;
typedef struct {
+ SH_COMMON
int sid;
char type; // t = text, v = VobSub, a = SSA/ASS
unsigned char* extradata; // extra header data passed from demuxer
@@ -120,8 +128,6 @@ typedef struct {
#ifdef CONFIG_ASS
ass_track_t* ass_track; // for SSA/ASS streams (type == 'a')
#endif
- char* lang; // track language
- int default_track;
} sh_sub_t;
// demuxer.c: