[FFmpeg-cvslog] r18411 - in trunk/libavcodec: h264.c h264.h
reimar
subversion
Fri Apr 10 13:31:55 CEST 2009
Author: reimar
Date: Fri Apr 10 13:31:55 2009
New Revision: 18411
Log:
Add forgotten void return type to ff_h264_free_context
Modified:
trunk/libavcodec/h264.c
trunk/libavcodec/h264.h
Modified: trunk/libavcodec/h264.c
==============================================================================
--- trunk/libavcodec/h264.c Fri Apr 10 13:29:51 2009 (r18410)
+++ trunk/libavcodec/h264.c Fri Apr 10 13:31:55 2009 (r18411)
@@ -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;
Modified: trunk/libavcodec/h264.h
==============================================================================
--- trunk/libavcodec/h264.h Fri Apr 10 13:29:51 2009 (r18410)
+++ trunk/libavcodec/h264.h Fri Apr 10 13:31:55 2009 (r18411)
@@ -572,6 +572,6 @@ int ff_h264_decode_rbsp_trailing(H264Con
/**
* 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 */
More information about the ffmpeg-cvslog
mailing list