Commit 604bd4ca authored by reimar's avatar reimar

Add forgotten void return type to ff_h264_free_context


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18411 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e1ea592f
......@@ -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;
......
......@@ -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 */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment