Added a missing const to ff_h264_get_slice_type().
authorLaurent Aimar <fenrir@videolan.org>
Sun, 24 Jan 2010 16:37:12 +0000 (16:37 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Sun, 24 Jan 2010 16:37:12 +0000 (16:37 +0000)
Originally committed as revision 21421 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/h264.c
libavcodec/h264.h

index 08745d8..61567eb 100644 (file)
@@ -2147,7 +2147,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
     return 0;
 }
 
-int ff_h264_get_slice_type(H264Context *h)
+int ff_h264_get_slice_type(const H264Context *h)
 {
     switch (h->slice_type) {
     case FF_P_TYPE:  return 0;
index b791558..e770ab8 100644 (file)
@@ -617,7 +617,7 @@ av_cold void ff_h264_free_context(H264Context *h);
 /**
  * reconstructs bitstream slice_type.
  */
-int ff_h264_get_slice_type(H264Context *h);
+int ff_h264_get_slice_type(const H264Context *h);
 
 /**
  * allocates tables.