Skip to content
Snippets Groups Projects
Commit 7cf6af27 authored by François Revol's avatar François Revol
Browse files

Fix non-debug build.

Originally committed as revision 13149 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e4e69e0b
No related branches found
No related tags found
No related merge requests found
...@@ -173,8 +173,10 @@ static int h264_handle_packet(RTPDemuxContext * s, ...@@ -173,8 +173,10 @@ static int h264_handle_packet(RTPDemuxContext * s,
int result= 0; int result= 0;
uint8_t start_sequence[]= {0, 0, 1}; uint8_t start_sequence[]= {0, 0, 1};
#ifdef DEBUG
assert(data); assert(data);
assert(data->cookie == MAGIC_COOKIE); assert(data->cookie == MAGIC_COOKIE);
#endif
assert(buf); assert(buf);
if (type >= 1 && type <= 23) if (type >= 1 && type <= 23)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment