FFmpeg
|
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <libcrystalhd/bc_dts_types.h>
#include <libcrystalhd/bc_dts_defs.h>
#include <libcrystalhd/libcrystalhd_if.h>
#include "avcodec.h"
#include "h264.h"
#include "internal.h"
#include "libavutil/imgutils.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
Go to the source code of this file.
Data Structures | |
struct | OpaqueList |
struct | CHDContext |
Macros | |
#define | _XOPEN_SOURCE 600 |
#define | OUTPUT_PROC_TIMEOUT 50 |
Timeout parameter passed to DtsProcOutput() in us. | |
#define | TIMESTAMP_UNIT 100000 |
Step between fake timestamps passed to hardware in units of 100ns. | |
#define | BASE_WAIT 10000 |
Initial value in us of the wait in decode() | |
#define | WAIT_UNIT 1000 |
Increment in us to adjust wait in decode() | |
Enumerations | |
enum | CopyRet { RET_ERROR = -1, RET_OK = 0, RET_COPY_AGAIN = 1, RET_SKIP_NEXT_COPY = 2, RET_COPY_NEXT_FIELD = 3 } |
Functions | |
static BC_MEDIA_SUBTYPE | id2subtype (CHDContext *priv, enum AVCodecID id) |
static void | print_frame_info (CHDContext *priv, BC_DTS_PROC_OUT *output) |
static uint64_t | opaque_list_push (CHDContext *priv, uint64_t reordered_opaque, uint8_t pic_type) |
static OpaqueList * | opaque_list_pop (CHDContext *priv, uint64_t fake_timestamp) |
static void | flush (AVCodecContext *avctx) |
static av_cold int | uninit (AVCodecContext *avctx) |
static av_cold int | init (AVCodecContext *avctx) |
static CopyRet | copy_frame (AVCodecContext *avctx, BC_DTS_PROC_OUT *output, void *data, int *got_frame) |
static CopyRet | receive_frame (AVCodecContext *avctx, void *data, int *got_frame) |
static int | decode (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
Variables | |
static const AVOption | options [] |
#define _XOPEN_SOURCE 600 |
Definition at line 76 of file crystalhd.c.
#define OUTPUT_PROC_TIMEOUT 50 |
Timeout parameter passed to DtsProcOutput() in us.
Definition at line 97 of file crystalhd.c.
Referenced by receive_frame().
#define TIMESTAMP_UNIT 100000 |
Step between fake timestamps passed to hardware in units of 100ns.
Definition at line 99 of file crystalhd.c.
Referenced by opaque_list_push().
#define BASE_WAIT 10000 |
#define WAIT_UNIT 1000 |
Increment in us to adjust wait in decode()
Definition at line 103 of file crystalhd.c.
Referenced by decode().
enum CopyRet |
Definition at line 110 of file crystalhd.c.
|
inlinestatic |
Definition at line 170 of file crystalhd.c.
Referenced by init().
|
inlinestatic |
Definition at line 190 of file crystalhd.c.
Referenced by receive_frame().
|
static |
Definition at line 236 of file crystalhd.c.
Referenced by decode().
|
static |
Definition at line 266 of file crystalhd.c.
Referenced by copy_frame().
|
static |
Definition at line 319 of file crystalhd.c.
|
static |
Definition at line 337 of file crystalhd.c.
Referenced by init().
|
static |
Definition at line 382 of file crystalhd.c.
|
inlinestatic |
Definition at line 539 of file crystalhd.c.
Referenced by receive_frame().
|
inlinestatic |
Definition at line 735 of file crystalhd.c.
Referenced by decode().
|
static |
Definition at line 871 of file crystalhd.c.
Referenced by show_formats_devices().
|
static |
Definition at line 156 of file crystalhd.c.