mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/librist: rework librist_read
Queue tracking makes no difference so remove it, return EAGAIN of no data is available and rist data block needs to be freed even for zero sized packets. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
4098f809d6
commit
4b1e387e25
@ -37,7 +37,6 @@
|
||||
typedef struct RISTContext {
|
||||
const AVClass *class;
|
||||
|
||||
int queue_count;
|
||||
int profile;
|
||||
int buffer_size;
|
||||
int log_level;
|
||||
@ -184,16 +183,19 @@ static int librist_read(URLContext *h, uint8_t *buf, int size)
|
||||
const struct rist_data_block *data_block;
|
||||
int ret;
|
||||
|
||||
ret = rist_receiver_data_read(s->ctx, &data_block, s->queue_count <= 0 ? POLLING_TIME : 0);
|
||||
ret = rist_receiver_data_read(s->ctx, &data_block, POLLING_TIME);
|
||||
if (ret < 0)
|
||||
return risterr2ret(ret);
|
||||
|
||||
if (ret == 0 || data_block->payload_len <= 0)
|
||||
return 0;
|
||||
if (ret == 0)
|
||||
return AVERROR(EAGAIN);
|
||||
|
||||
if (data_block->payload_len > 9968) {
|
||||
rist_receiver_data_block_free((struct rist_data_block**)&data_block);
|
||||
return AVERROR_EXTERNAL;
|
||||
}
|
||||
|
||||
s->queue_count = ret - 1;
|
||||
size = data_block->payload_len;
|
||||
|
||||
memcpy(buf, data_block->payload, size);
|
||||
rist_receiver_data_block_free((struct rist_data_block**)&data_block);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user