hvirtual/quicktime/ffmpeg/libavcodec/qtrle.c File Reference

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "common.h"
#include "avcodec.h"
#include "dsputil.h"

Include dependency graph for qtrle.c:

Go to the source code of this file.

Data Structures

struct  QtrleContext

Defines

#define CHECK_STREAM_PTR(n)
#define CHECK_PIXEL_PTR(n)

Functions

static void qtrle_decode_1bpp (QtrleContext *s)
static void qtrle_decode_2bpp (QtrleContext *s)
static void qtrle_decode_4bpp (QtrleContext *s)
static void qtrle_decode_8bpp (QtrleContext *s)
static void qtrle_decode_16bpp (QtrleContext *s)
static void qtrle_decode_24bpp (QtrleContext *s)
static void qtrle_decode_32bpp (QtrleContext *s)
static int qtrle_decode_init (AVCodecContext *avctx)
static int qtrle_decode_frame (AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size)
static int qtrle_decode_end (AVCodecContext *avctx)

Variables

AVCodec qtrle_decoder


Detailed Description

QT RLE Video Decoder by Mike Melanson (melanson@pcisys.net) For more information about the QT RLE format, visit: http://www.pcisys.net/~melanson/codecs/

The QT RLE decoder has seven modes of operation: 1, 2, 4, 8, 16, 24, and 32 bits per pixel. For modes 1, 2, 4, and 8 the decoder outputs PAL8 colorspace data. 16-bit data yields RGB555 data. 24-bit data is RGB24 and 32-bit data is RGBA32.

Definition in file qtrle.c.


Define Documentation

#define CHECK_PIXEL_PTR (  ) 

Value:

if (pixel_ptr + n > pixel_limit) { \
    av_log (s->avctx, AV_LOG_INFO, "Problem: pixel_ptr >= pixel_limit (%d >= %d)\n", \
      pixel_ptr + n, pixel_limit); \
    return; \
  } \

Definition at line 60 of file qtrle.c.

Referenced by qtrle_decode_16bpp(), qtrle_decode_24bpp(), qtrle_decode_32bpp(), qtrle_decode_4bpp(), and qtrle_decode_8bpp().

#define CHECK_STREAM_PTR (  ) 

Value:

if ((stream_ptr + n) > s->size) { \
    av_log (s->avctx, AV_LOG_INFO, "Problem: stream_ptr out of bounds (%d >= %d)\n", \
      stream_ptr + n, s->size); \
    return; \
  }

Definition at line 53 of file qtrle.c.


Function Documentation

static void qtrle_decode_16bpp ( QtrleContext s  )  [static]

static void qtrle_decode_1bpp ( QtrleContext s  )  [static]

Definition at line 67 of file qtrle.c.

Referenced by qtrle_decode_frame().

static void qtrle_decode_24bpp ( QtrleContext s  )  [static]

static void qtrle_decode_2bpp ( QtrleContext s  )  [static]

Definition at line 71 of file qtrle.c.

Referenced by qtrle_decode_frame().

static void qtrle_decode_32bpp ( QtrleContext s  )  [static]

static void qtrle_decode_4bpp ( QtrleContext s  )  [static]

static void qtrle_decode_8bpp ( QtrleContext s  )  [static]

static int qtrle_decode_end ( AVCodecContext avctx  )  [static]

static int qtrle_decode_frame ( AVCodecContext avctx,
void *  data,
int *  data_size,
uint8_t *  buf,
int  buf_size 
) [static]

static int qtrle_decode_init ( AVCodecContext avctx  )  [static]


Variable Documentation

Initial value:

Definition at line 612 of file qtrle.c.

Referenced by avcodec_register_all().


Generated on Mon Apr 28 14:05:49 2008 for Cinelerra by  doxygen 1.5.5