#include <stdint.h>
#include "libavutil/attributes.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "canopus.h"
#include "internal.h"
#include "hq_hqa.h"
#include "hq_hqadsp.h"
Go to the source code of this file.
|  | 
| static void | put_blocks (HQContext *c, AVFrame *pic, int plane, int x, int y, int ilace, int16_t *block0, int16_t *block1) | 
|  | 
| static int | hq_decode_block (HQContext *c, GetBitContext *gb, int16_t block[64], int qsel, int is_chroma, int is_hqa) | 
|  | 
| static int | hq_decode_mb (HQContext *c, AVFrame *pic, GetBitContext *gb, int x, int y) | 
|  | 
| static int | hq_decode_frame (HQContext *ctx, AVFrame *pic, int prof_num, size_t data_size) | 
|  | 
| static int | hqa_decode_mb (HQContext *c, AVFrame *pic, int qgroup, GetBitContext *gb, int x, int y) | 
|  | 
| static int | hqa_decode_slice (HQContext *ctx, AVFrame *pic, GetBitContext *gb, int quant, int slice_no, int w, int h) | 
|  | 
| static int | hqa_decode_frame (HQContext *ctx, AVFrame *pic, size_t data_size) | 
|  | 
| static int | hq_hqa_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) | 
|  | 
| static av_cold int | hq_hqa_decode_init (AVCodecContext *avctx) | 
|  | 
| static av_cold int | hq_hqa_decode_close (AVCodecContext *avctx) | 
|  | 
  
  | 
        
          | static void put_blocks | ( | HQContext * | c, |  
          |  |  | AVFrame * | pic, |  
          |  |  | int | plane, |  
          |  |  | int | x, |  
          |  |  | int | y, |  
          |  |  | int | ilace, |  
          |  |  | int16_t * | block0, |  
          |  |  | int16_t * | block1 |  
          |  | ) |  |  |  | inlinestatic | 
 
 
  
  | 
        
          | static int hq_decode_block | ( | HQContext * | c, |  
          |  |  | GetBitContext * | gb, |  
          |  |  | int16_t | block[64], |  
          |  |  | int | qsel, |  
          |  |  | int | is_chroma, |  
          |  |  | int | is_hqa |  
          |  | ) |  |  |  | static | 
 
 
  
  | 
        
          | static int hq_decode_frame | ( | HQContext * | ctx, |  
          |  |  | AVFrame * | pic, |  
          |  |  | int | prof_num, |  
          |  |  | size_t | data_size |  
          |  | ) |  |  |  | static | 
 
 
  
  | 
        
          | static int hqa_decode_frame | ( | HQContext * | ctx, |  
          |  |  | AVFrame * | pic, |  
          |  |  | size_t | data_size |  
          |  | ) |  |  |  | static | 
 
 
Initial value:= {
    .name           = "hq_hqa",
}
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
static av_cold int init(AVCodecContext *avctx)
static int hq_hqa_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
static av_cold int hq_hqa_decode_init(AVCodecContext *avctx)
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators. 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
static av_cold int hq_hqa_decode_close(AVCodecContext *avctx)
Definition at line 373 of file hq_hqa.c.