~ubuntu-branches/debian/sid/mplayer/sid

« back to all changes in this revision

Viewing changes to loader/dshow/cmediasample.h

  • Committer: Bazaar Package Importer
  • Author(s): A Mennucc1
  • Date: 2009-03-23 10:05:45 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090323100545-x8h79obawnnte7kk
Tags: 1.0~rc2+svn20090303-5
debian/control : move docbook-xml,docbook-xsl,xsltproc from 
Build-Depends-Indep to Build-Depends, since they are needed to run
configure

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef DS_CMEDIASAMPLE_H
2
 
#define DS_CMEDIASAMPLE_H
 
1
#ifndef MPLAYER_CMEDIASAMPLE_H
 
2
#define MPLAYER_CMEDIASAMPLE_H
3
3
 
4
4
#include "interfaces.h"
5
5
#include "guids.h"
6
6
 
7
 
typedef struct _CMediaSample CMediaSample;
8
 
struct _CMediaSample
 
7
typedef struct CMediaSample CMediaSample;
 
8
struct CMediaSample
9
9
{
10
10
    IMediaSample_vt* vt;
11
11
    DECLARE_IUNKNOWN();
25
25
    void ( *ResetPointer) (CMediaSample* This); // FIXME replace with Set & 0
26
26
};
27
27
 
28
 
CMediaSample* CMediaSampleCreate(IMemAllocator* allocator, int _size);
 
28
CMediaSample* CMediaSampleCreate(IMemAllocator* allocator, int size);
29
29
// called from allocator
30
30
void CMediaSample_Destroy(CMediaSample* This);
31
31
 
32
 
#endif /* DS_CMEDIASAMPLE_H */
 
32
#endif /* MPLAYER_CMEDIASAMPLE_H */