-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Too many deprecated warning #1
Comments
I'm using ffmpeg from standard Ubuntu 16.04 repositories.
…On Mon, Aug 13, 2018, 22:13 Arink Verma ***@***.***> wrote:
Hi @apc-llc <https://github.com/apc-llc>
Against which FFmpeg version should I compiled code?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AFaPqpafIcvlHz5eTpPPD5l0v7DrnCrXks5uQd3rgaJpZM4V7J2->
.
|
As you know, I suggest rewrite code base on this description. But I need help. |
Is there any specific difficulty or a question? |
For example I try rewrite this way, but it is a mistake... For me still not clear how use avcodec_send_frame() and avcodec_receive_packet(). //int got_output;
//int ret = avcodec_encode_video2(c, &pkt, yuvpic, &got_output);
int ret = avcodec_send_frame(c, yuvpic);
if (ret) {
fprintf(stderr, "err avcodec_send_frame()\n");
exit(1);
}
ret = avcodec_receive_packet(c, &pkt); //SIGABRT here
if (ret) {
fprintf(stderr, "err avcodec_receive_packet()\n");
exit(1);
}else
//if (got_output)
{
fflush(stdout); |
Hi @apc-llc
Against which FFmpeg version should I compiled code?
The text was updated successfully, but these errors were encountered: