Closed Bug 734784 Opened 12 years ago Closed 12 years ago

Clean up includes in content/media

Categories

(Core :: Audio/Video, defect)

defect
Not set
trivial

Tracking

()

RESOLVED FIXED
mozilla14
Tracking Status
firefox13 --- fixed

People

(Reporter: kinetik, Assigned: kinetik)

Details

Attachments

(2 files, 1 obsolete file)

I ran include-what-you-use (http://code.google.com/p/include-what-you-use/) over content/media while experimenting with clang builds.  I've only used it to remove unneeded headers for now (and have ignored some of the more extreme suggestions), and haven't bothered fixing the situations where we're depending on things included indirectly, as it can make the include list significantly larger.  There's some discussion in bug 634839 debating the merits of enlarging the include list to reduce dependencies.

Try push: https://tbpl.mozilla.org/?tree=Try&rev=5de423b0424f
Attached patch patch v0Splinter Review
Attachment #604811 - Flags: review?(cpearce)
Comment on attachment 604811 [details] [diff] [review]
patch v0

Review of attachment 604811 [details] [diff] [review]:
-----------------------------------------------------------------

Nice!
Attachment #604811 - Flags: review?(cpearce) → review+
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
(In reply to Matt Brubeck (:mbrubeck) from comment #4)
> https://hg.mozilla.org/mozilla-central/rev/3c82a920d095

After the checkin, generating libxul.so with system libvpx is failed on Fedora 16 x86_64.

I can build it successful with the changeset c77b00ff2c80 which is the parent of 3c82a920d095.


../../content/media/webm/nsWebMReader.o: In function `~nsWebMReader':
/foo/mozilla-central-3c82a920d095/content/medi/webm/nsWebMReader.cpp:164: undefined reference to `vpx_codec_destroy'
/usr/bin/ld: libxul.so: hidden symbol `vpx_codec_destroy' isn't defined
/usr/bin/ld: final link failed: Bad value
collect2: ld returned 1 exit status
make[5]: *** [libxul.so] Error 1
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
BTW, I suppose vpx/vpx_codec.h is double included because vpx/vpx_decoder.h includes it.
At a glance this appears to be caused by me neglecting to add vpx/vpx_codec.h to config/system-headers, but addressing that does not solve the problem.

The symbol is correctly exported from the system libvpx.so:
    66: 0000000000005590   266 FUNC    GLOBAL DEFAULT   11 vpx_codec_control_

But with and without the system-headers fix, the symbol in nsWebMReader.o ends up being hidden:
   578: 0000000000000000     0 NOTYPE  GLOBAL HIDDEN   UND vpx_codec_control_

The preprocessor confirms that the build is correctly generating a system_wrappers versions of vpx/vpx_codec.h and that it is included before the real vpx/vpx_codec.h:

# 1 "../../../dist/system_wrappers/vpx/vpx_codec.h" 1

# 2 "../../../dist/system_wrappers/vpx/vpx_codec.h" 3
#pragma GCC visibility push(default)
# 1 "/home/kinetik/third_party/libvpx-dist/include/vpx/vpx_codec.h" 1 3
# 40 "/home/kinetik/third_party/libvpx-dist/include/vpx/vpx_codec.h" 3

I must be missing something.
Ted, do you have any suggestions on how to further debug this?
Attached patch followup patch v0 (obsolete) — Splinter Review
Takanori, does the attached patch fix the problem for you?  It partially reverts the change, by including vpx/vpx_decoder.h rather than vpx/vpx_codec.h in nsWebMReader.h.
Is vpx_decoder.h including vpx_codec.h directly first? If that's happening the system wrapper version might not be getting included in time, so the visibility would be wrong.
(In reply to Matthew Gregan [:kinetik] from comment #9)
> Created attachment 605655 [details] [diff] [review]
> followup patch v0
> 
> Takanori, does the attached patch fix the problem for you?

Yes, the build is completed with the attachment 605655 [details] [diff] [review].
(In reply to Ted Mielczarek [:ted] from comment #10)
> Is vpx_decoder.h including vpx_codec.h directly first? If that's happening
> the system wrapper version might not be getting included in time, so the
> visibility would be wrong.

The include order in nsWebMReader.cpp is:
nsWebMReader.h
  vpx_codec.h
vpx_decoder.h
  vpx_codec.h
vp8dx.h

Looking at the preprocessed output confirms that vpx_codec_control_ is correctly placed inside a visibility push(default) pragma produced by the system wrapper, but inspecting nsWebMReader.o with readelf reveals the symbol is still marked as hidden.

Today I ran into the same issue when trying to build the new GStreamer patch in bug 422540 after fixing the system-headers.  It turns out that ccache is the culprit.  In direct mode (the default), it hashes the source file and then uses the hash to find a manifest in the cache, which it reads the include file paths from and then hashes them--so it'll notice that the include files have changed, but *not* that the include file *paths* have changed.  Setting CCACHE_NODIRECT=1 in the environment forces it to use the older/slower mode where it hashes the preprocessed output, which works fine when system-headers changes.
Attachment #605655 - Attachment is obsolete: true
Better fix--update system-headers to wrap vpx_codec.h.

We'll need this on aurora too, since the original patch landed just before the branch.
Attachment #606019 - Flags: review?(cpearce)
Attachment #606019 - Flags: review?(cpearce) → review+
Comment on attachment 606019 [details] [diff] [review]
followup patch v1

We need this on aurora since the original change landed just before the branch.

[Approval Request Comment]
Regression caused by (bug #): 734784
User impact if declined: Builds using the system libvpx will fail.
Testing completed (on m-c, etc.): Verified locally.
Risk to taking this patch (and alternatives if risky): None.  Trivial build system change.
String changes made by this patch: None.
Attachment #606019 - Flags: approval-mozilla-aurora?
Ah! Crazy. Good work tracking that down. :)
https://hg.mozilla.org/mozilla-central/rev/049823935141
Status: REOPENED → RESOLVED
Closed: 12 years ago12 years ago
Resolution: --- → FIXED
Target Milestone: mozilla13 → mozilla14
Comment on attachment 606019 [details] [diff] [review]
followup patch v1

[Triage Comment]
Build only change - approved for Aurora 13.
Attachment #606019 - Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: