]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/qtrleenc.c
prores: initialise encoder and decoder parts only when needed
[ffmpeg] / libavcodec / qtrleenc.c
index ede03d2f782afd0e76105ee0f2dff976011dcd41..3ffce2bc7f8fcee410022279b83f69ecaf330b20 100644 (file)
@@ -120,7 +120,7 @@ static void qtrle_encode_line(QtrleEncContext *s, AVFrame *p, int line, uint8_t
     unsigned int skipcount;
     /* This will be the number of consecutive equal pixels in the current
      * frame, starting from the ith one also */
-    unsigned int av_uninit(repeatcount);
+    unsigned int repeatcount;
 
     /* The cost of the three different possibilities */
     int total_bulk_cost;