X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc_block.h;h=0ebef6e6c0c47b2fe6fed86979f322ecf4995bfb;hb=03c6c686591cdaa3438648bf9afaf49d3fdf1107;hp=bb42d3e85c1052a8282d1985ed8f3c802861ee29;hpb=1592ccf66c6700d39637096996a90302f06866bb;p=vlc diff --git a/include/vlc_block.h b/include/vlc_block.h index bb42d3e85c..0ebef6e6c0 100644 --- a/include/vlc_block.h +++ b/include/vlc_block.h @@ -1,7 +1,7 @@ /***************************************************************************** * vlc_block.h: Data blocks management functions ***************************************************************************** - * Copyright (C) 2003 VideoLAN + * Copyright (C) 2003 the VideoLAN team * $Id$ * * Authors: Laurent Aimar @@ -18,7 +18,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ #ifndef _VLC_BLOCK_H @@ -62,8 +62,6 @@ typedef struct block_sys_t block_sys_t; #define BLOCK_FLAG_END_OF_FRAME 0x0040 /** This is not a key frame for bitrate shaping */ #define BLOCK_FLAG_NO_KEYFRAME 0x0080 -/** This is the last block of the GOP */ -#define BLOCK_FLAG_END_OF_GOP 0x0100 /** This block contains a clock reference */ #define BLOCK_FLAG_CLOCK 0x0200 /** This block is scrambled */ @@ -79,6 +77,7 @@ typedef struct block_sys_t block_sys_t; struct block_t { block_t *p_next; + block_t *p_prev; uint32_t i_flags;