| 
    FFmpeg
    
   | 
 
#include <stdio.h>#include <stdlib.h>#include "libavutil/common.h"#include "libavutil/imgutils.h"#include "libavutil/intreadwrite.h"#include "avcodec.h"#include "internal.h"#include <zlib.h>Go to the source code of this file.
Data Structures | |
| struct | ZmbvContext | 
Macros | |
| #define | ZMBV_KEYFRAME 1 | 
| #define | ZMBV_DELTAPAL 2 | 
Enumerations | |
| enum | ZmbvFormat {  ZMBV_FMT_NONE = 0, ZMBV_FMT_1BPP = 1, ZMBV_FMT_2BPP = 2, ZMBV_FMT_4BPP = 3, ZMBV_FMT_8BPP = 4, ZMBV_FMT_15BPP = 5, ZMBV_FMT_16BPP = 6, ZMBV_FMT_24BPP = 7, ZMBV_FMT_32BPP = 8, ZMBV_FMT_NONE = 0, ZMBV_FMT_1BPP = 1, ZMBV_FMT_2BPP = 2, ZMBV_FMT_4BPP = 3, ZMBV_FMT_8BPP = 4, ZMBV_FMT_15BPP = 5, ZMBV_FMT_16BPP = 6, ZMBV_FMT_24BPP = 7, ZMBV_FMT_32BPP = 8 }  | 
Functions | |
| static int | zmbv_decode_xor_8 (ZmbvContext *c) | 
| Decode XOR'ed frame - 8bpp version.  More... | |
| static int | zmbv_decode_xor_16 (ZmbvContext *c) | 
| Decode XOR'ed frame - 15bpp and 16bpp version.  More... | |
| static int | zmbv_decode_xor_32 (ZmbvContext *c) | 
| Decode XOR'ed frame - 32bpp version.  More... | |
| static int | zmbv_decode_intra (ZmbvContext *c) | 
| Decode intraframe.  More... | |
| static int | decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) | 
| static av_cold int | decode_init (AVCodecContext *avctx) | 
| static av_cold int | decode_end (AVCodecContext *avctx) | 
Variables | |
| AVCodec | ff_zmbv_decoder | 
Zip Motion Blocks Video decoder
Definition in file zmbv.c.
| enum ZmbvFormat | 
      
  | 
  static | 
Decode XOR'ed frame - 8bpp version.
Definition at line 81 of file zmbv.c.
Referenced by decode_frame().
      
  | 
  static | 
Decode XOR'ed frame - 15bpp and 16bpp version.
Definition at line 160 of file zmbv.c.
Referenced by decode_frame().
      
  | 
  static | 
Decode XOR'ed frame - 32bpp version.
Definition at line 322 of file zmbv.c.
Referenced by decode_frame().
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
      
  | 
  static | 
| AVCodec ff_zmbv_decoder | 
 1.8.17