]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/qdrw.c
Add get_ue_golomb_31()
[ffmpeg] / libavcodec / qdrw.c
index 78283f6cc09bdb78bda5808679b498bac48775b7..e0e4142b81fd5ef36cd27ef97bae1f6834423bd5 100644 (file)
@@ -129,7 +129,7 @@ static int decode_frame(AVCodecContext *avctx,
     return buf_size;
 }
 
-static int decode_init(AVCodecContext *avctx){
+static av_cold int decode_init(AVCodecContext *avctx){
 //    QdrawContext * const a = avctx->priv_data;
 
     if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
@@ -151,4 +151,5 @@ AVCodec qdraw_decoder = {
     NULL,
     decode_frame,
     CODEC_CAP_DR1,
+    .long_name = NULL_IF_CONFIG_SMALL("Apple QuickDraw"),
 };