Advertisement
elvman

Untitled

Aug 28th, 2015
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. libavdevice/bmdenc.c:207:5: error: use of undeclared identifier 'displayMode'
  2. displayMode->GetFrameRate(&frameRateDuration, &frameRateScale);
  3. ^
  4. libavdevice/bmdenc.c:207:32: error: use of undeclared identifier 'frameRateDuration'
  5. displayMode->GetFrameRate(&frameRateDuration, &frameRateScale);
  6. ^
  7. libavdevice/bmdenc.c:207:52: error: use of undeclared identifier 'frameRateScale'
  8. displayMode->GetFrameRate(&frameRateDuration, &frameRateScale);
  9. ^
  10. libavdevice/bmdenc.c:208:25: error: use of undeclared identifier 'frameRateScale'
  11. st->time_base.den = frameRateScale;
  12. ^
  13. libavdevice/bmdenc.c:209:25: error: use of undeclared identifier 'frameRateDuration'
  14. st->time_base.num = frameRateDuration;
  15. ^
  16. libavdevice/bmdenc.c:282:29: error: no member named 'data_st' in 'BMDCaptureContext'
  17. pkt.stream_index = ctx->data_st->index;
  18. ~~~ ^
  19. libavdevice/bmdenc.c:284:55: error: implicit declaration of function 'av_gettime' is
  20. invalid in C99 [-Werror,-Wimplicit-function-declaration]
  21. pkt.size = snprintf(buf, sizeof(buf), "%" PRId64, av_gettime());
  22. ^
  23. /usr/include/secure/_stdio.h:57:62: note: expanded from macro 'snprintf'
  24. __builtin___snprintf_chk (str, len, 0, __darwin_obsz(str), __VA_ARGS__)
  25. ^
  26. libavdevice/bmdenc.c:284:55: warning: format specifies type 'long long' but the
  27. argument has type 'int' [-Wformat]
  28. pkt.size = snprintf(buf, sizeof(buf), "%" PRId64, av_gettime());
  29. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
  30. /usr/include/secure/_stdio.h:57:62: note: expanded from macro 'snprintf'
  31. __builtin___snprintf_chk (str, len, 0, __darwin_obsz(str), __VA_ARGS__)
  32. ^
  33. libavdevice/bmdenc.c:312:30: warning: incompatible pointer types passing
  34. 'PacketQueue *' (aka 'struct PacketQueue *') to parameter of type
  35. 'BMDCaptureContext *' [-Wincompatible-pointer-types]
  36. put_wallclock_packet(&ctx->q, &pkt);
  37. ^~~~~~~
  38. libavdevice/bmdenc.c:274:52: note: passing argument to parameter 'ctx' here
  39. static int put_wallclock_packet(BMDCaptureContext *ctx, AVPacket *p)
  40. ^
  41. libavdevice/bmdenc.c:389:53: error: no member named 'wallclock' in ''
  42. { "wallclock", "Add the wallclock information", O(wallclock), AV_OPT...
  43. ^ ~~~~~~~~~
  44. libavdevice/bmdenc.c:381:50: note: expanded from macro 'O'
  45. #define O(x) offsetof(BMDCaptureContext, conf) + offsetof(DecklinkConf, x)
  46. ^
  47. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/6.1.0/include/stddef.h:133:24: note:
  48. expanded from macro 'offsetof'
  49. #define offsetof(t, d) __builtin_offsetof(t, d)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement