-
Notifications
You must be signed in to change notification settings - Fork 110
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
FF_INPUT_BUFFER_PADDING_SIZE renamed as AV_INPUT_BUFFER_PADDING_SIZE #11
Comments
Are you getting a warning or an error during compilation? |
It is a blocking compilation error. Inside the FFmpeg/doc/APIchanges file, it is written: 2015-07-27 - lavc 56.56.100 / 56.35.0 - avcodec.h |
Thanks for reporting, and the suggested solution. Can you also attach your full compilation log for more info? When I previously tested with the latest FFmpeg, I remember seeing some warnings about API deprecations/changes but it didn't result in blocking errors. At some point I will to do a proper FFmpeg upgrade and fix all warnings and potentially your issue as well. |
Hi, BTW, if you want, I could be able to replace automake with cmake that I think is much edipo-clnt-292:vireo multi$ make V=1 define attribute_deprecated attribute((deprecated))
internal/decode/h264.cpp:103:60: error: use of undeclared identifier 'FF_INPUT_BUFFER_PADDING_SIZE' define attribute_deprecated attribute((deprecated))
internal/decode/h264.cpp:203:17: warning: 'avcodec_decode_video2' is deprecated [-Wdeprecated-declarations] define attribute_deprecated attribute((deprecated))
3 warnings and 1 error generated. |
I see a compile error at the end of your log, along with all the warnings I was talking about. You said you managed the resolve the error, is that true? |
Yes, replacing FF_INPUT_BUFFER_PADDING_SIZE and FF_MIN_BUFFER_SIZE |
Hi, ^
I realized the last FFmpeg renamed FF_INPUT_BUFFER_PADDING_SIZE with AV_INPUT_BUFFER_PADDING_SIZE.
It has to be fixed in the following source file:
Bst regards
Giuliano
The text was updated successfully, but these errors were encountered: