mirror of https://git.ffmpeg.org/ffmpeg.git
CrystalHD: Initialise variables to silence valgrind.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
89ddff92a3
commit
eaf4bf6df2
|
@ -512,7 +512,7 @@ static inline CopyRet copy_frame(AVCodecContext *avctx,
|
|||
void *data, int *data_size)
|
||||
{
|
||||
BC_STATUS ret;
|
||||
BC_DTS_STATUS decoder_status;
|
||||
BC_DTS_STATUS decoder_status = { 0, };
|
||||
uint8_t trust_interlaced;
|
||||
uint8_t interlaced;
|
||||
|
||||
|
@ -786,7 +786,7 @@ static inline CopyRet receive_frame(AVCodecContext *avctx,
|
|||
static int decode(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
|
||||
{
|
||||
BC_STATUS ret;
|
||||
BC_DTS_STATUS decoder_status;
|
||||
BC_DTS_STATUS decoder_status = { 0, };
|
||||
CopyRet rec_ret;
|
||||
CHDContext *priv = avctx->priv_data;
|
||||
HANDLE dev = priv->dev;
|
||||
|
|
Loading…
Reference in New Issue