LCOV - code coverage report
Current view: top level - media/server/gstplayer/include - IGstGenericPlayerPrivate.h (source / functions) Coverage Total Hit
Test: coverage.info Lines: 100.0 % 2 2
Test Date: 2025-03-21 11:02:39 Functions: 100.0 % 2 2

            Line data    Source code
       1              : /*
       2              :  * If not stated otherwise in this file or this component's LICENSE file the
       3              :  * following copyright and licenses apply:
       4              :  *
       5              :  * Copyright 2022 Sky UK
       6              :  *
       7              :  * Licensed under the Apache License, Version 2.0 (the "License");
       8              :  * you may not use this file except in compliance with the License.
       9              :  * You may obtain a copy of the License at
      10              :  *
      11              :  * http://www.apache.org/licenses/LICENSE-2.0
      12              :  *
      13              :  * Unless required by applicable law or agreed to in writing, software
      14              :  * distributed under the License is distributed on an "AS IS" BASIS,
      15              :  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      16              :  * See the License for the specific language governing permissions and
      17              :  * limitations under the License.
      18              :  */
      19              : 
      20              : #ifndef FIREBOLT_RIALTO_SERVER_I_GST_GENERIC_PLAYER_PRIVATE_H_
      21              : #define FIREBOLT_RIALTO_SERVER_I_GST_GENERIC_PLAYER_PRIVATE_H_
      22              : 
      23              : #include "IMediaPipeline.h"
      24              : 
      25              : #include <gst/app/gstappsrc.h>
      26              : #include <gst/gst.h>
      27              : #include <memory>
      28              : #include <string>
      29              : #include <vector>
      30              : 
      31              : namespace firebolt::rialto::server
      32              : {
      33              : class IGstGenericPlayerPrivate
      34              : {
      35              : public:
      36          459 :     IGstGenericPlayerPrivate() = default;
      37          459 :     virtual ~IGstGenericPlayerPrivate() = default;
      38              : 
      39              :     IGstGenericPlayerPrivate(const IGstGenericPlayerPrivate &) = delete;
      40              :     IGstGenericPlayerPrivate &operator=(const IGstGenericPlayerPrivate &) = delete;
      41              :     IGstGenericPlayerPrivate(IGstGenericPlayerPrivate &&) = delete;
      42              :     IGstGenericPlayerPrivate &operator=(IGstGenericPlayerPrivate &&) = delete;
      43              : 
      44              :     /**
      45              :      * @brief Schedules need media data task. Called by the worker thread.
      46              :      */
      47              :     virtual void scheduleNeedMediaData(GstAppSrc *src) = 0;
      48              : 
      49              :     /**
      50              :      * @brief Schedules enough data task. Called by the worker thread.
      51              :      */
      52              :     virtual void scheduleEnoughData(GstAppSrc *src) = 0;
      53              : 
      54              :     /**
      55              :      * @brief Schedules audio underflow task. Called by the worker thread.
      56              :      */
      57              :     virtual void scheduleAudioUnderflow() = 0;
      58              : 
      59              :     /**
      60              :      * @brief Schedules video underflow task. Called by the worker thread.
      61              :      */
      62              :     virtual void scheduleVideoUnderflow() = 0;
      63              : 
      64              :     /**
      65              :      * @brief Schedules all sources attached task. Called by the worker thread.
      66              :      */
      67              :     virtual void scheduleAllSourcesAttached() = 0;
      68              : 
      69              :     /**
      70              :      * @brief Sets video sink rectangle. Called by the worker thread.
      71              :      *
      72              :      * @retval true on success.
      73              :      */
      74              :     virtual bool setVideoSinkRectangle() = 0;
      75              : 
      76              :     /**
      77              :      * @brief Sets immediate output. Called by the worker thread.
      78              :      *
      79              :      * @retval true on success.
      80              :      */
      81              :     virtual bool setImmediateOutput() = 0;
      82              : 
      83              :     /**
      84              :      * @brief Sets the low latency property. Called by the worker thread.
      85              :      *
      86              :      * @retval true on success.
      87              :      */
      88              :     virtual bool setLowLatency() = 0;
      89              : 
      90              :     /**
      91              :      * @brief Sets the sync property. Called by the worker thread.
      92              :      *
      93              :      * @retval true on success.
      94              :      */
      95              :     virtual bool setSync() = 0;
      96              : 
      97              :     /**
      98              :      * @brief Sets the sync off property. Called by the worker thread.
      99              :      *
     100              :      * @retval true on success.
     101              :      */
     102              :     virtual bool setSyncOff() = 0;
     103              : 
     104              :     /**
     105              :      * @brief Sets the stream sync mode property. Called by the worker thread.
     106              :      *
     107              :      * @retval true on success.
     108              :      */
     109              :     virtual bool setStreamSyncMode(const MediaSourceType &type) = 0;
     110              : 
     111              :     /**
     112              :      * @brief Sets frame rendering. Called by the worker thread.
     113              :      *
     114              :      * @retval true on success.
     115              :      */
     116              :     virtual bool setRenderFrame() = 0;
     117              : 
     118              :     /**
     119              :      * @brief Sets buffering limit. Called by the worker thread.
     120              :      *
     121              :      * @retval true on success.
     122              :      */
     123              :     virtual bool setBufferingLimit() = 0;
     124              : 
     125              :     /**
     126              :      * @brief Sets use buffering. Called by the worker thread.
     127              :      *
     128              :      * @retval true on success.
     129              :      */
     130              :     virtual bool setUseBuffering() = 0;
     131              : 
     132              :     /**
     133              :      * @brief Sends NeedMediaData notification. Called by the worker thread.
     134              :      */
     135              :     virtual void notifyNeedMediaData(const MediaSourceType mediaSource) = 0;
     136              : 
     137              :     /**
     138              :      * @brief Constructs a new buffer with data from media segment. Does not perform decryption.
     139              :      *        Called by the worker thread.
     140              :      */
     141              :     virtual GstBuffer *createBuffer(const IMediaPipeline::MediaSegment &mediaSegment) const = 0;
     142              : 
     143              :     virtual void attachData(const firebolt::rialto::MediaSourceType mediaType) = 0;
     144              : 
     145              :     /**
     146              :      * @brief Checks the new audio mediaSegment metadata and updates the caps accordingly.
     147              :      */
     148              :     virtual void updateAudioCaps(int32_t rate, int32_t channels, const std::shared_ptr<CodecData> &codecData) = 0;
     149              : 
     150              :     /**
     151              :      * @brief Checks the new video mediaSegment metadata and updates the caps accordingly.
     152              :      */
     153              :     virtual void updateVideoCaps(int32_t width, int32_t height, Fraction frameRate,
     154              :                                  const std::shared_ptr<CodecData> &codecData) = 0;
     155              : 
     156              :     /**
     157              :      * @brief Adds clipping meta to the audio buffer.
     158              :      *
     159              :      * @param buffer the buffer to add the clipping meta to
     160              :      * @param clippingStart the start of the clipping
     161              :      * @param clippingEnd the end of the clipping
     162              :      */
     163              :     virtual void addAudioClippingToBuffer(GstBuffer *buffer, uint64_t clippingStart, uint64_t clippingEnd) const = 0;
     164              : 
     165              :     /**
     166              :      * @brief Changes pipeline state.
     167              :      *
     168              :      * @param[in] newState    : The desired state.
     169              :      *
     170              :      * @retval true on success.
     171              :      */
     172              :     virtual bool changePipelineState(GstState newState) = 0;
     173              : 
     174              :     /**
     175              :      * @brief Starts position reporting and check audio underflow. Called by the worker thread.
     176              :      */
     177              :     virtual void startPositionReportingAndCheckAudioUnderflowTimer() = 0;
     178              : 
     179              :     /**
     180              :      * @brief Stops position reporting and check audio underflow. Called by the worker thread.
     181              :      */
     182              :     virtual void stopPositionReportingAndCheckAudioUnderflowTimer() = 0;
     183              : 
     184              :     /**
     185              :      * @brief Stops worker thread. Called by the worker thread.
     186              :      */
     187              :     virtual void stopWorkerThread() = 0;
     188              : 
     189              :     /**
     190              :      * @brief Restores playback after underflow. Called by the worker thread.
     191              :      *
     192              :      * @param[in] underflowFlag    : The audio or video underflow flag to be cleared.
     193              :      */
     194              :     virtual void cancelUnderflow(firebolt::rialto::MediaSourceType mediaSource) = 0;
     195              : 
     196              :     /**
     197              :      * @brief Sets pending playback rate after reaching PLAYING state
     198              :      *
     199              :      */
     200              :     virtual void setPendingPlaybackRate() = 0;
     201              : 
     202              :     /**
     203              :      * @brief Updates Playback Group in PlayerContext.
     204              :      */
     205              :     virtual void updatePlaybackGroup(GstElement *typefind, const GstCaps *caps) = 0;
     206              : 
     207              :     /**
     208              :      * @brief Notification that a new child element has been added to the autovideosink.
     209              :      *        Stores the child video sink in the player context.
     210              :      *
     211              :      * @param[in] object    : Element added to the autovideosink.
     212              :      */
     213              :     virtual void addAutoVideoSinkChild(GObject *object) = 0;
     214              : 
     215              :     /**
     216              :      * @brief Notification that a new child element has been added to the autoaudiosink.
     217              :      *        Stores the child audio sink in the player context.
     218              :      *
     219              :      * @param[in] object    : Element added to the autoaudiosink.
     220              :      */
     221              :     virtual void addAutoAudioSinkChild(GObject *object) = 0;
     222              : 
     223              :     /**
     224              :      * @brief Notification that a child element has been removed from the autovideosink.
     225              :      *        Removes the child video sink in the player context if it has been stored.
     226              :      *
     227              :      * @param[in] object    : Element removed from the autovideosink.
     228              :      */
     229              :     virtual void removeAutoVideoSinkChild(GObject *object) = 0;
     230              : 
     231              :     /**
     232              :      * @brief Notification that a child element has been removed from the autoaudiosink.
     233              :      *        Removes the child audio sink in the player context if it has been stored.
     234              :      *
     235              :      * @param[in] object    : Element removed from the autoaudiosink.
     236              :      */
     237              :     virtual void removeAutoAudioSinkChild(GObject *object) = 0;
     238              : 
     239              :     /**
     240              :      * @brief Gets the sink element for source type.
     241              :      *
     242              :      * @param[in] mediaSourceType : the source type to obtain the sink for
     243              :      *
     244              :      * @retval The sink, NULL if not found. Please call getObjectUnref() if it's non-null
     245              :      */
     246              :     virtual GstElement *getSink(const MediaSourceType &mediaSourceType) const = 0;
     247              : 
     248              :     /**
     249              :      * @brief Sets the audio and video flags on the pipeline based on the input.
     250              :      *
     251              :      * @param[in] enableAudio : Whether to enable audio flags.
     252              :      */
     253              :     virtual void setPlaybinFlags(bool enableAudio) = 0;
     254              : 
     255              :     /**
     256              :      * @brief Pushes GstSample if playback position has changed or new segment needs to be sent.
     257              :      *
     258              :      * @param[in] source          : The Gst Source element, that should receive new sample
     259              :      * @param[in] typeStr         : The media source type string
     260              :      */
     261              :     virtual void pushSampleIfRequired(GstElement *source, const std::string &typeStr) = 0;
     262              : 
     263              :     /**
     264              :      * @brief Reattaches source (or switches it)
     265              :      *
     266              :      * @param[in] source          : The new media source
     267              :      *
     268              :      * @retval True on success
     269              :      */
     270              :     virtual bool reattachSource(const std::unique_ptr<IMediaPipeline::MediaSource> &source) = 0;
     271              : };
     272              : } // namespace firebolt::rialto::server
     273              : 
     274              : #endif // FIREBOLT_RIALTO_SERVER_I_GST_GENERIC_PLAYER_PRIVATE_H_
        

Generated by: LCOV version 2.0-1