mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
rtpdec_xiph: switch to av_assert()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b66afe087a
commit
6b72615c32
@ -27,12 +27,11 @@
|
||||
* @author Josh Allmann <joshua.allmann@gmail.com>
|
||||
*/
|
||||
|
||||
#include "libavutil/avassert.h"
|
||||
#include "libavutil/avstring.h"
|
||||
#include "libavutil/base64.h"
|
||||
#include "libavcodec/bytestream.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
#include "rtpdec.h"
|
||||
#include "rtpdec_formats.h"
|
||||
|
||||
@ -183,7 +182,7 @@ static int xiph_handle_packet(AVFormatContext * ctx,
|
||||
data->timestamp = *timestamp;
|
||||
|
||||
} else {
|
||||
assert(fragmented < 4);
|
||||
av_assert1(fragmented < 4);
|
||||
if (data->timestamp != *timestamp) {
|
||||
// skip if fragmented timestamp is incorrect;
|
||||
// a start packet has been lost somewhere
|
||||
|
Loading…
Reference in New Issue
Block a user