view bethsoftvideo.h @ 5165:c99fa49eaa80 libavcodec

part 2/2 of fixing Altivec-accelerated H264 luma inloop filter In h264_deblock_q1, the result of the deblock needs to be kept to be used in future deblocks, so return this value now. Also change the sign of tc0 vector: It is really a signed value, so treat it as such until after the >=0 check; then, at that point, after being masked, it can be treated as unsigned. Patch by Graham Booker % gbooker A tamu P edu%
author gpoirier
date Sun, 17 Jun 2007 09:37:13 +0000
parents 9ecbfc0c82bf
children 3fd46e281bd8
line wrap: on
line source

#ifndef AVCODEC_BETHSOFTVIDEO_H
#define AVCODEC_BETHSOFTVIDEO_H

enum BethsoftVidBlockType
{
    PALETTE_BLOCK       = 0x02,
    FIRST_AUDIO_BLOCK   = 0x7c,
    AUDIO_BLOCK         = 0x7d,
    VIDEO_I_FRAME       = 0x03,
    VIDEO_P_FRAME       = 0x01,
    VIDEO_YOFF_P_FRAME  = 0x04,
    EOF_BLOCK           = 0x14,
};

#endif