annotate loader/dshow/DS_VideoDecoder.h @ 26926:1e6241274552

added and reused demux_flush() instead of emptying the demux_stream buffers; patch by Bryan Henderson - giraffedata gmail com
author nicodvb
date Mon, 02 Jun 2008 10:17:48 +0000
parents a8ea87c71d18
children 837cd9762b4e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26045
a8ea87c71d18 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25794
diff changeset
1 #ifndef MPLAYER_DS_VIDEODECODER_H
a8ea87c71d18 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25794
diff changeset
2 #define MPLAYER_DS_VIDEODECODER_H
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
3
25794
2c8cdb9123b8 Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents: 6335
diff changeset
4 typedef struct DS_VideoDecoder DS_VideoDecoder;
3059
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
5
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
6 int DS_VideoDecoder_GetCapabilities(DS_VideoDecoder *this);
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
7
3444
0c0042de1f95 API changes - now fully compatible with C++ version
arpi
parents: 3063
diff changeset
8 DS_VideoDecoder * DS_VideoDecoder_Open(char* dllname, GUID* guid, BITMAPINFOHEADER * format, int flip, int maxauto);
3059
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
9
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
10 void DS_VideoDecoder_Destroy(DS_VideoDecoder *this);
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
11
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
12 void DS_VideoDecoder_StartInternal(DS_VideoDecoder *this);
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
13
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
14 void DS_VideoDecoder_StopInternal(DS_VideoDecoder *this);
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
15
3063
004e3199fee0 mplayer integration
arpi
parents: 3059
diff changeset
16 int DS_VideoDecoder_DecodeInternal(DS_VideoDecoder *this, const void* src, int size, int is_keyframe, char* pImage);
3059
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
17
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
18 /*
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
19 * bits == 0 - leave unchanged
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
20 */
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
21 //int SetDestFmt(DS_VideoDecoder * this, int bits = 24, fourcc_t csp = 0);
3946
c00db356082f headers cleanup
arpi
parents: 3444
diff changeset
22 int DS_VideoDecoder_SetDestFmt(DS_VideoDecoder *this, int bits, unsigned int csp);
3059
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
23 int DS_VideoDecoder_SetDirection(DS_VideoDecoder *this, int d);
3946
c00db356082f headers cleanup
arpi
parents: 3444
diff changeset
24 int DS_VideoDecoder_GetValue(DS_VideoDecoder *this, const char* name, int* value);
c00db356082f headers cleanup
arpi
parents: 3444
diff changeset
25 int DS_VideoDecoder_SetValue(DS_VideoDecoder *this, const char* name, int value);
6335
e9bd97d5c5cc warning & newline fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
arpi
parents: 3946
diff changeset
26 int DS_SetAttr_DivX(char* attribute, int value);
3059
24fa494bedb1 imported from xine
arpi
parents: 1545
diff changeset
27
1545
da26060c81ef big avifile sync - from now we have common code
arpi
parents:
diff changeset
28
26045
a8ea87c71d18 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25794
diff changeset
29 #endif /* MPLAYER_DS_VIDEODECODER_H */