Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ffmpeg-single-hello/src/main/cpp/ffmpeg_hello.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ JNIEXPORT jstring JNICALL Java_com_onzhou_ffmpeg_hello_FFmpegHello_avfilterinfo
AVFilter *f_temp = (AVFilter *)avfilter_next(NULL);
while (f_temp != NULL){
sprintf(info, "%s[%10s]\n", info, f_temp->name);
f_temp = f_temp->next;
}
LOGE("%s", info);
return (*env)->NewStringUTF(env, info);
Expand All @@ -127,4 +128,4 @@ JNIEXPORT jstring JNICALL Java_com_onzhou_ffmpeg_hello_FFmpegHello_configuration

LOGE("%s", info);
return (*env)->NewStringUTF(env, info);
}
}