Browse Source

Add forgotten void return type to ff_h264_free_context

Originally committed as revision 18411 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Reimar Döffinger 17 years ago
parent
commit
cbf1eae9a5
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libavcodec/h264.c
  2. +1
    -1
      libavcodec/h264.h

+ 1
- 1
libavcodec/h264.c View File

@@ -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;



+ 1
- 1
libavcodec/h264.h View File

@@ -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 */

Loading…
Cancel
Save