Changes between Version 1 and Version 2 of Ticket #1440


Ignore:
Timestamp:
Jun 11, 2012, 6:11:41 PM (14 years ago)
Author:
mbradshaw
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1440 – Description

    v1 v2  
    2222}}}
    2323
    24 Replacing `attribute_align_arg` with `__attribute__((force_align_arg_pointer))` in libavcodec/w32pthreads.h fixes the error. Including libavutil/internal.h also seems to fix this error, but introduces new errors in ffmpeg.c (because of things like fprintf).
     24Replacing `attribute_align_arg` with `__attribute__((force_align_arg_pointer))` in libavcodec/w32pthreads.h fixes the error. Including libavutil/internal.h also seems to fix this error, but introduces new errors in ffmpeg.c (because of things like printf).
    2525
    2626I'm not sure what the best solution is (`attribute_align_arg` is needed and it's defined in libavutil/internal.h, but ffmpeg.c can't include that file), and will leave it up to others to determine that.