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

« back to all changes in this revision

Viewing changes to loader/dshow/allocator.c

  • 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
1
/*
2
2
 * Modified for use with MPlayer, detailed changelog at
3
3
 * http://svn.mplayerhq.hu/mplayer/trunk/
4
 
 * $Id: allocator.c 22322 2007-02-23 08:07:07Z voroshil $
5
4
 */
6
5
 
7
6
#include "config.h"
13
12
 
14
13
static int AllocatorKeeper = 0;
15
14
 
16
 
struct _avm_list_t
 
15
struct avm_list_t
17
16
{
18
 
    struct _avm_list_t* next;
19
 
    struct _avm_list_t* prev;
 
17
    struct avm_list_t* next;
 
18
    struct avm_list_t* prev;
20
19
    void* member;
21
20
};
22
21