forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add backend_stream_profile::to_stream()
- Loading branch information
Showing
13 changed files
with
149 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,111 +1,137 @@ | ||
// License: Apache 2.0. See LICENSE file in root directory. | ||
// Copyright(c) 2015 Intel Corporation. All Rights Reserved. | ||
// Copyright(c) 2015-24 Intel Corporation. All Rights Reserved. | ||
|
||
#include "stream.h" | ||
#include <ostream> | ||
|
||
namespace librealsense | ||
|
||
namespace librealsense { | ||
|
||
|
||
stream::stream( rs2_stream stream_type, int index ) | ||
: _index( index ) | ||
, _type( stream_type ) | ||
{ | ||
stream::stream(rs2_stream stream_type, int index) | ||
: _index(index), _type(stream_type) | ||
{ | ||
_uid = environment::get_instance().generate_stream_id(); | ||
} | ||
_uid = environment::get_instance().generate_stream_id(); | ||
} | ||
|
||
int stream::get_stream_index() const | ||
{ | ||
return _index; | ||
} | ||
int stream::get_stream_index() const | ||
{ | ||
return _index; | ||
} | ||
|
||
void stream::set_stream_index(int index) | ||
{ | ||
_index = index; | ||
} | ||
void stream::set_stream_index( int index ) | ||
{ | ||
_index = index; | ||
} | ||
|
||
rs2_stream stream::get_stream_type() const | ||
{ | ||
return _type; | ||
} | ||
rs2_stream stream::get_stream_type() const | ||
{ | ||
return _type; | ||
} | ||
|
||
void stream::set_stream_type(rs2_stream stream) | ||
{ | ||
_type = stream; | ||
} | ||
void stream::set_stream_type( rs2_stream stream ) | ||
{ | ||
_type = stream; | ||
} | ||
|
||
stream_profile_base::stream_profile_base() | ||
{ | ||
_c_ptr = &_c_wrapper; | ||
_c_wrapper.profile = this; | ||
_c_wrapper.clone = nullptr; | ||
} | ||
stream_profile_base::stream_profile_base() | ||
{ | ||
_c_ptr = &_c_wrapper; | ||
_c_wrapper.profile = this; | ||
_c_wrapper.clone = nullptr; | ||
} | ||
|
||
int stream_profile_base::get_stream_index() const | ||
{ | ||
return _index; | ||
} | ||
int stream_profile_base::get_stream_index() const | ||
{ | ||
return _index; | ||
} | ||
|
||
void stream_profile_base::set_stream_index(int index) | ||
{ | ||
_index = index; | ||
} | ||
void stream_profile_base::set_stream_index( int index ) | ||
{ | ||
_index = index; | ||
} | ||
|
||
rs2_stream stream_profile_base::get_stream_type() const | ||
{ | ||
return _type; | ||
} | ||
rs2_stream stream_profile_base::get_stream_type() const | ||
{ | ||
return _type; | ||
} | ||
|
||
void stream_profile_base::set_stream_type(rs2_stream stream) | ||
{ | ||
_type = stream; | ||
} | ||
void stream_profile_base::set_stream_type( rs2_stream stream ) | ||
{ | ||
_type = stream; | ||
} | ||
|
||
rs2_format stream_profile_base::get_format() const | ||
{ | ||
return _format; | ||
} | ||
rs2_format stream_profile_base::get_format() const | ||
{ | ||
return _format; | ||
} | ||
|
||
void stream_profile_base::set_format(rs2_format format) | ||
{ | ||
_format = format; | ||
} | ||
void stream_profile_base::set_format( rs2_format format ) | ||
{ | ||
_format = format; | ||
} | ||
|
||
uint32_t stream_profile_base::get_framerate() const | ||
{ | ||
return _framerate; | ||
} | ||
uint32_t stream_profile_base::get_framerate() const | ||
{ | ||
return _framerate; | ||
} | ||
|
||
void stream_profile_base::set_framerate(uint32_t val) | ||
{ | ||
_framerate = val; | ||
} | ||
void stream_profile_base::set_framerate( uint32_t val ) | ||
{ | ||
_framerate = val; | ||
} | ||
|
||
int stream_profile_base::get_tag() const | ||
{ | ||
return _tag; | ||
} | ||
int stream_profile_base::get_tag() const | ||
{ | ||
return _tag; | ||
} | ||
|
||
void stream_profile_base::tag_profile(int tag) | ||
{ | ||
_tag = tag; | ||
} | ||
void stream_profile_base::tag_profile( int tag ) | ||
{ | ||
_tag = tag; | ||
} | ||
|
||
rs2_stream_profile* stream_profile_base::get_c_wrapper() const | ||
{ | ||
return _c_ptr; | ||
} | ||
|
||
void stream_profile_base::set_c_wrapper(rs2_stream_profile* wrapper) | ||
{ | ||
_c_ptr = wrapper; | ||
} | ||
void stream_profile_base::create_snapshot(std::shared_ptr<stream_profile_interface>& snapshot) const | ||
{ | ||
auto ptr = std::const_pointer_cast<stream_interface>(shared_from_this()); | ||
snapshot = std::dynamic_pointer_cast<stream_profile_interface>(ptr); | ||
} | ||
void stream_profile_base::enable_recording(std::function<void(const stream_profile_interface&)> record_action) | ||
rs2_stream_profile * stream_profile_base::get_c_wrapper() const | ||
{ | ||
return _c_ptr; | ||
} | ||
|
||
|
||
void stream_profile_base::set_c_wrapper( rs2_stream_profile * wrapper ) | ||
{ | ||
_c_ptr = wrapper; | ||
} | ||
|
||
|
||
void stream_profile_base::create_snapshot( std::shared_ptr< stream_profile_interface > & snapshot ) const | ||
{ | ||
auto ptr = std::const_pointer_cast< stream_interface >( shared_from_this() ); | ||
snapshot = std::dynamic_pointer_cast< stream_profile_interface >( ptr ); | ||
} | ||
|
||
|
||
void stream_profile_base::enable_recording( std::function< void( const stream_profile_interface & ) > record_action ) | ||
{ | ||
// TODO: implement or remove inheritance from recordable<T> | ||
throw not_implemented_exception( __FUNCTION__ ); | ||
} | ||
|
||
|
||
std::ostream & operator<<( std::ostream & os, const stream_profiles & profiles ) | ||
{ | ||
bool first = true; | ||
for( auto & p : profiles ) | ||
{ | ||
//TODO: implement or remove inheritance from recordable<T> | ||
throw not_implemented_exception(__FUNCTION__); | ||
if( first ) | ||
first = false; | ||
else | ||
os << ", "; | ||
os << p; | ||
} | ||
return os; | ||
} | ||
|
||
|
||
} // namespace librealsense |
Oops, something went wrong.