OSDN Git Service

avformat/hevc: fix mix of av_malloc() with free()
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 9 Mar 2014 22:27:31 +0000 (23:27 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 9 Mar 2014 22:27:31 +0000 (23:27 +0100)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavformat/hevc.c

index 6e935e6..19dd2f4 100644 (file)
@@ -1056,7 +1056,7 @@ int ff_hevc_annexb2mp4(AVIOContext *pb, const uint8_t *buf_in,
     }
 
 end:
-    free(start);
+    av_free(start);
     if (ps_count)
         *ps_count = num_ps;
     return ret;
@@ -1109,7 +1109,7 @@ int ff_hevc_annexb2mp4_buf(const uint8_t *buf_in, uint8_t **buf_out,
     *size = avio_close_dyn_buf(pb, buf_out);
 
 end:
-    free(start);
+    av_free(start);
     if (ps_count)
         *ps_count = num_ps;
     return ret;