[SCM] libav/experimental: Add forgotten void return type to ff_h264_free_context

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:43:39 UTC 2013


The following commit has been merged in the experimental branch:
commit cbf1eae9a53ecf2c5052a4b6563aab3913ad31fc
Author: Reimar Döffinger <Reimar.Doeffinger at gmx.de>
Date:   Fri Apr 10 11:31:55 2009 +0000

    Add forgotten void return type to ff_h264_free_context
    
    Originally committed as revision 18411 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 3eb1386..99dd52b 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -8083,7 +8083,7 @@ int main(void){
 #endif /* TEST */
 
 
-av_cold ff_h264_free_context(H264Context *h)
+av_cold void ff_h264_free_context(H264Context *h)
 {
     int i;
 
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 1f151af..b58d86a 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -572,6 +572,6 @@ int ff_h264_decode_rbsp_trailing(H264Context *h, const uint8_t *src);
 /**
  * frees any data that may have been allocated in the H264 context like SPS, PPS etc.
  */
-av_cold ff_h264_free_context(H264Context *h);
+av_cold void ff_h264_free_context(H264Context *h);
 
 #endif /* AVCODEC_H264_H */

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list