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
frame_thread_encoder: silence integer to pointer without cast warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer
12 years ago
parent
5ff43ec72d
commit
3affcc99a8
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
libavcodec/frame_thread_encoder.c
+ 2
- 1
libavcodec/frame_thread_encoder.c
View File
@@ -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;
Write
Preview
Loading…
Cancel
Save