diff options
author | Måns Rullgård | 2009-05-17 00:54:29 +0000 |
---|---|---|
committer | Måns Rullgård | 2009-05-17 00:54:29 +0000 |
commit | db2f209352272c0c3a48feb9a15bf773d5272c28 (patch) | |
tree | 5628c78529b25d71c119e3638135cff535cc0a08 /libavcodec/mpeg12.h | |
parent | eb853afb8a2813a27defbecbedf31ce0ce94e678 (diff) |
mpeg12: fix non-standard use of "extern inline"
Rename ff_mpeg1_decode_block_intra to mpeg1_decode_block_intra and
make it static. Add ff_mpeg1_decode_block_intra as plain extern
function calling mpeg1_decode_block_intra.
Originally committed as revision 18859 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg12.h')
-rw-r--r-- | libavcodec/mpeg12.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12.h b/libavcodec/mpeg12.h index dbbe8e43ec..30bb675d35 100644 --- a/libavcodec/mpeg12.h +++ b/libavcodec/mpeg12.h @@ -56,6 +56,6 @@ static inline int decode_dc(GetBitContext *gb, int component) return diff; } -extern inline int ff_mpeg1_decode_block_intra(MpegEncContext *s, DCTELEM *block, int n); +extern int ff_mpeg1_decode_block_intra(MpegEncContext *s, DCTELEM *block, int n); #endif /* AVCODEC_MPEG12_H */ |