mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
frame_thread_encoder: silence integer to pointer without cast warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5ff43ec72d
commit
3affcc99a8
@ -98,7 +98,8 @@ static void * attribute_align_arg worker(void *v){
|
||||
if(got_packet) {
|
||||
av_dup_packet(pkt);
|
||||
} else {
|
||||
pkt->data = pkt->size = 0;
|
||||
pkt->data = NULL;
|
||||
pkt->size = 0;
|
||||
}
|
||||
pthread_mutex_lock(&c->finished_task_mutex);
|
||||
c->finished_tasks[task.index].outdata = pkt; pkt = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user