Skip to content

Commit

Permalink
[osx/ios] fixed, log message is incorrect, darwin uses internal ffmpe…
Browse files Browse the repository at this point in the history
…g but compiled static so it just looks like external
  • Loading branch information
davilla committed Sep 26, 2012
1 parent d2946b5 commit 5e689c4
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/DllAvCodec.h
Expand Up @@ -177,7 +177,9 @@ class DllAvCodec : public DllDynamic, DllAvCodecInterface
// DLL faking.
virtual bool ResolveExports() { return true; }
virtual bool Load() {
#if !defined(TARGET_DARWIN)
CLog::Log(LOGDEBUG, "DllAvCodec: Using libavcodec system library");
#endif
return true;
}
virtual void Unload() {}
Expand Down
2 changes: 2 additions & 0 deletions lib/DllAvFilter.h
Expand Up @@ -147,7 +147,9 @@ class DllAvFilter : public DllDynamic, DllAvFilterInterface
// DLL faking.
virtual bool ResolveExports() { return true; }
virtual bool Load() {
#if !defined(TARGET_DARWIN)
CLog::Log(LOGDEBUG, "DllAvFilter: Using libavfilter system library");
#endif
return true;
}
virtual void Unload() {}
Expand Down
2 changes: 2 additions & 0 deletions lib/DllAvFormat.h
Expand Up @@ -157,7 +157,9 @@ class DllAvFormat : public DllDynamic, DllAvFormatInterface
// DLL faking.
virtual bool ResolveExports() { return true; }
virtual bool Load() {
#if !defined(TARGET_DARWIN)
CLog::Log(LOGDEBUG, "DllAvFormat: Using libavformat system library");
#endif
return true;
}
virtual void Unload() {}
Expand Down
2 changes: 2 additions & 0 deletions lib/DllAvUtil.h
Expand Up @@ -159,7 +159,9 @@ class DllAvUtilBase : public DllDynamic, DllAvUtilInterface
// DLL faking.
virtual bool ResolveExports() { return true; }
virtual bool Load() {
#if !defined(TARGET_DARWIN)
CLog::Log(LOGDEBUG, "DllAvUtilBase: Using libavutil system library");
#endif
return true;
}
virtual void Unload() {}
Expand Down
4 changes: 4 additions & 0 deletions lib/DllSwResample.h
Expand Up @@ -74,7 +74,9 @@ class DllSwResample : public DllDynamic, DllSwResampleInterface
// DLL faking.
virtual bool ResolveExports() { return true; }
virtual bool Load() {
#if !defined(TARGET_DARWIN)
CLog::Log(LOGDEBUG, "DllAvFormat: Using libswresample system library");
#endif
return true;
}
virtual void Unload() {}
Expand All @@ -93,7 +95,9 @@ class DllSwResample : public DllDynamic, DllSwResampleInterface
// DLL faking.
virtual bool ResolveExports() { return true; }
virtual bool Load() {
#if !defined(TARGET_DARWIN)
CLog::Log(LOGDEBUG, "DllAvFormat: Using libavresample system library");
#endif
return true;
}
virtual void Unload() {}
Expand Down
2 changes: 2 additions & 0 deletions lib/DllSwScale.h
Expand Up @@ -116,7 +116,9 @@ class DllSwScale : public DllDynamic, public DllSwScaleInterface
// DLL faking.
virtual bool ResolveExports() { return true; }
virtual bool Load() {
#if !defined(TARGET_DARWIN)
CLog::Log(LOGDEBUG, "DllSwScale: Using libswscale system library");
#endif
return true;
}
virtual void Unload() {}
Expand Down

0 comments on commit 5e689c4

Please sign in to comment.