diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 03:34:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 03:34:30 +0000 |
commit | 5149048b6f43e345b2e23194ecf7b7dbc3a1158e (patch) | |
tree | 09fd4a13eca44556f549ef91df249d8edca288de /libavcodec/mpegvideo.h | |
parent | 7a05b0a675f7089076e1972368c0ca4cbdc2a18a (diff) | |
download | ffmpeg-5149048b6f43e345b2e23194ecf7b7dbc3a1158e.tar.gz |
Mark h263_get_picture_format() av_const to indicate that it has no funny
sideeffects and reads no global memory.
Originally committed as revision 21044 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 797dbb9875..cbc1b2773f 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -845,7 +845,7 @@ int ff_mpeg4_decode_mb(MpegEncContext *s, * that represents some standard picture dimensions or indicates that * width&height are explicitly stored later. */ -int h263_get_picture_format(int width, int height); +int av_const h263_get_picture_format(int width, int height); void ff_mpeg4_encode_video_packet_header(MpegEncContext *s); void ff_mpeg4_clean_buffers(MpegEncContext *s); |