summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-04-10 11:31:55 +0000
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-04-10 11:31:55 +0000
commitcbf1eae9a53ecf2c5052a4b6563aab3913ad31fc (patch)
tree05709727e334248c86076527b5e8f2c145d2e7b4 /libavcodec/h264.h
parente4732ba98b2a20251c60cbc9d314f585866aca1b (diff)
Add forgotten void return type to ff_h264_free_context
Originally committed as revision 18411 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 1f151af2cb..b58d86a67d 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 */