Skip to content
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

[media] Remove decode_target_internal.cc #4631

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion starboard/android/shared/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ static_library("starboard_platform") {
"//starboard/shared/starboard/command_line.cc",
"//starboard/shared/starboard/command_line.h",
"//starboard/shared/starboard/decode_target/decode_target_get_info.cc",
"//starboard/shared/starboard/decode_target/decode_target_internal.cc",
"//starboard/shared/starboard/decode_target/decode_target_internal.h",
"//starboard/shared/starboard/decode_target/decode_target_release.cc",
"//starboard/shared/starboard/drm/drm_close_session.cc",
Expand Down
19 changes: 0 additions & 19 deletions starboard/shared/starboard/decode_target/decode_target_internal.cc

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "starboard/common/ref_counted.h"

struct SbDecodeTargetPrivate : starboard::RefCounted<SbDecodeTargetPrivate> {
SbDecodeTargetPrivate();
SbDecodeTargetPrivate() = default;

SbDecodeTargetPrivate(const SbDecodeTargetPrivate&) = delete;
SbDecodeTargetPrivate& operator=(const SbDecodeTargetPrivate&) = delete;
Expand All @@ -30,7 +30,7 @@ struct SbDecodeTargetPrivate : starboard::RefCounted<SbDecodeTargetPrivate> {
protected:
friend class starboard::RefCounted<SbDecodeTargetPrivate>;

virtual ~SbDecodeTargetPrivate();
virtual ~SbDecodeTargetPrivate() = default;
};

#endif // STARBOARD_SHARED_STARBOARD_DECODE_TARGET_DECODE_TARGET_INTERNAL_H_
Loading