VirtualBox

Changeset 96230 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
Aug 16, 2022 3:44:23 PM (2 years ago)
Author:
vboxsync
Message:

Recording/Main: Renaming (IPRT status code -> VBox status code). bugref:10275

Location:
trunk/src/VBox/Main
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/WebMWriter.h

    r96229 r96230  
    429429         * Initializes a segment.
    430430         *
    431          * @returns IPRT status code.
     431         * @returns VBox status code.
    432432         */
    433433        int init(void)
  • trunk/src/VBox/Main/src-client/ConsoleImpl.cpp

    r96226 r96230  
    73537353 * Creates the recording context.
    73547354 *
    7355  * @returns IPRT status code.
     7355 * @returns VBox status code.
    73567356 */
    73577357int Console::i_recordingCreate(void)
     
    73777377 * Starts recording. Does nothing if recording is already active.
    73787378 *
    7379  * @returns IPRT status code.
     7379 * @returns VBox status code.
    73807380 */
    73817381int Console::i_recordingStart(util::AutoWriteLock *pAutoLock /* = NULL */)
  • trunk/src/VBox/Main/src-client/Recording.cpp

    r96229 r96230  
    162162 * Notifies a recording context's encoding thread.
    163163 *
    164  * @returns IPRT status code.
     164 * @returns VBox status code.
    165165 */
    166166int RecordingContext::threadNotify(void)
     
    333333 * Creates a recording context.
    334334 *
    335  * @returns IPRT status code.
     335 * @returns VBox status code.
    336336 * @param   ptrConsole          Pointer to console object this context is bound to (weak pointer).
    337337 * @param   Settings            Reference to recording settings to use for creation.
     
    403403 * Starts a recording context by creating its worker thread.
    404404 *
    405  * @returns IPRT status code.
     405 * @returns VBox status code.
    406406 */
    407407int RecordingContext::startInternal(void)
     
    432432 * Stops a recording context by telling the worker thread to stop and finalizing its operation.
    433433 *
    434  * @returns IPRT status code.
     434 * @returns VBox status code.
    435435 */
    436436int RecordingContext::stopInternal(void)
     
    590590 * Creates a new recording context.
    591591 *
    592  * @returns IPRT status code.
     592 * @returns VBox status code.
    593593 * @param   ptrConsole          Pointer to console object this context is bound to (weak pointer).
    594594 * @param   Settings            Reference to recording settings to use for creation.
     
    610610 * Starts a recording context.
    611611 *
    612  * @returns IPRT status code.
     612 * @returns VBox status code.
    613613 */
    614614int RecordingContext::Start(void)
     
    781781 * @thread  EMT
    782782 *
    783  * @returns IPRT status code.
     783 * @returns VBox status code.
    784784 * @param   pvData              Audio frame data to send.
    785785 * @param   cbData              Size (in bytes) of (encoded) audio frame data.
     
    802802 * @thread  EMT
    803803 *
    804  * @returns IPRT status code.
     804 * @returns VBox status code.
    805805 * @param   uScreen            Screen number to send video frame to.
    806806 * @param   x                  Starting x coordinate of the video frame.
  • trunk/src/VBox/Main/src-client/RecordingStream.cpp

    r96229 r96230  
    5454 * Opens a recording stream.
    5555 *
    56  * @returns IPRT status code.
     56 * @returns VBox status code.
    5757 * @param   screenSettings      Recording settings to use.
    5858 */
     
    220220 * Does housekeeping and recording context notification.
    221221 *
    222  * @returns IPRT status code.
     222 * @returns VBox status code.
    223223 * @param   msTimestamp         Current timestamp (in ms).
    224224 */
     
    287287 * As this can be very CPU intensive, this function usually is called from a separate thread.
    288288 *
    289  * @returns IPRT status code.
     289 * @returns VBox status code.
    290290 * @param   mapBlocksCommon     Map of common block to process for this stream.
    291291 *
     
    415415 * Sends a raw (e.g. not yet encoded) video frame to the recording stream.
    416416 *
    417  * @returns IPRT status code. Will return VINF_RECORDING_LIMIT_REACHED if the stream's recording
     417 * @returns VBox status code. Will return VINF_RECORDING_LIMIT_REACHED if the stream's recording
    418418 *          limit has been reached or VINF_RECORDING_THROTTLED if the frame is too early for the current
    419419 *          FPS setting.
     
    653653 * Initializes a recording stream.
    654654 *
    655  * @returns IPRT status code.
     655 * @returns VBox status code.
    656656 * @param   pCtx                Pointer to recording context.
    657657 * @param   uScreen             Screen number to use for this recording stream.
     
    666666 * Initializes a recording stream, internal version.
    667667 *
    668  * @returns IPRT status code.
     668 * @returns VBox status code.
    669669 * @param   pCtx                Pointer to recording context.
    670670 * @param   uScreen             Screen number to use for this recording stream.
     
    816816 * and finalizes recording.
    817817 *
    818  * @returns IPRT status code.
     818 * @returns VBox status code.
    819819 */
    820820int RecordingStream::close(void)
     
    896896 * Uninitializes a recording stream.
    897897 *
    898  * @returns IPRT status code.
     898 * @returns VBox status code.
    899899 */
    900900int RecordingStream::Uninit(void)
     
    906906 * Uninitializes a recording stream, internal version.
    907907 *
    908  * @returns IPRT status code.
     908 * @returns VBox status code.
    909909 */
    910910int RecordingStream::uninitInternal(void)
  • trunk/src/VBox/Main/src-client/WebMWriter.cpp

    r96229 r96230  
    113113 * Closes the WebM file and drains all queues.
    114114 *
    115  * @returns IPRT status code.
     115 * @returns VBox status code.
    116116 */
    117117int WebMWriter::Close(void)
     
    152152 * Adds an audio track.
    153153 *
    154  * @returns IPRT status code.
     154 * @returns VBox status code.
    155155 * @param   pCodec          Audio codec to use.
    156156 * @param   uHz             Input sampling rate.
     
    335335 * Adds a video track.
    336336 *
    337  * @returns IPRT status code.
     337 * @returns VBox status code.
    338338 * @param   pCodec              Codec data to use.
    339339 * @param   uWidth              Width (in pixels) of the video track.
     
    451451 * Writes the WebM file header.
    452452 *
    453  * @returns IPRT status code.
     453 * @returns VBox status code.
    454454 */
    455455int WebMWriter::writeHeader(void)
     
    487487 * Writes a simple block into the EBML structure.
    488488 *
    489  * @returns IPRT status code.
     489 * @returns VBox status code.
    490490 * @param   a_pTrack        Track the simple block is assigned to.
    491491 * @param   a_pBlock        Simple block to write.
     
    524524 * Writes a simple block and enqueues it into the segment's render queue.
    525525 *
    526  * @returns IPRT status code.
     526 * @returns VBox status code.
    527527 * @param   a_pTrack        Track the simple block is assigned to.
    528528 * @param   a_pBlock        Simple block to write and enqueue.
     
    569569 * Writes a data block to the specified track.
    570570 *
    571  * @returns IPRT status code.
     571 * @returns VBox status code.
    572572 * @param   uTrack          Track ID to write data to.
    573573 * @param   pvData          Pointer to data block to write.
     
    619619 * Processes a render queue.
    620620 *
    621  * @returns IPRT status code.
     621 * @returns VBox status code.
    622622 * @param   pQueue          Queue to process.
    623623 * @param   fForce          Whether forcing to process the render queue or not.
     
    795795 * Writes the WebM footer.
    796796 *
    797  * @returns IPRT status code.
     797 * @returns VBox status code.
    798798 */
    799799int WebMWriter::writeFooter(void)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette