This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Added a missing const to ff_h264_get_slice_type().
Originally committed as revision 21421 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Laurent Aimar
16 years ago
parent
f1f78a9d85
commit
0dc343d4cb
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/h264.c
+1
-1
libavcodec/h264.h
+ 1
- 1
libavcodec/h264.c
View 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;
+ 1
- 1
libavcodec/h264.h
View 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.
Write
Preview
Loading…
Cancel
Save