~siretart/vlc/ubuntu

« back to all changes in this revision

Viewing changes to src/misc/block.c

  • Committer: Reinhard Tartler
  • Date: 2008-09-26 06:45:40 UTC
  • mto: (21.2.1 vlc-0.9.3)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: siretart@tauware.de-20080926064540-0sd8zwmig33ksmy4
Tags: upstream-ubuntu-0.9.3
ImportĀ upstreamĀ versionĀ 0.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * block.c: Data blocks management functions
3
3
 *****************************************************************************
4
4
 * Copyright (C) 2003-2004 the VideoLAN team
5
 
 * $Id: 3909d33bb232b2737a7369c47c4779f6ac6b4663 $
 
5
 * $Id: 80832f5773eff6acfa0114229580484c286d23de $
6
6
 *
7
7
 * Authors: Laurent Aimar <fenrir@videolan.org>
8
8
 *
40
40
{
41
41
    block_t     self;
42
42
    size_t      i_allocated_buffer;
43
 
    uint8_t     p_allocated_buffer[0];
 
43
    uint8_t     p_allocated_buffer[];
44
44
};
45
45
 
46
46
#ifndef NDEBUG