Browse Source

Merge commit '17c45d4d056d0e10ecb88b424ec9e68be398da5e'

* commit '17c45d4d056d0e10ecb88b424ec9e68be398da5e':
  libtheora: Check frame allocation

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 11 years ago
parent
commit
a91c175db2
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/libtheoraenc.c

+ 2
- 0
libavcodec/libtheoraenc.c View File

@@ -267,6 +267,8 @@ static av_cold int encode_init(AVCodecContext* avc_context)

/* Set up the output AVFrame */
avc_context->coded_frame = av_frame_alloc();
if (!avc_context->coded_frame)
return AVERROR(ENOMEM);

return 0;
}


Loading…
Cancel
Save