| Index: media/cast/transport/cast_transport_sender.h
|
| diff --git a/media/cast/transport/cast_transport_sender.h b/media/cast/transport/cast_transport_sender.h
|
| index 1d3ac322c6b0de75c07ff3d43bb45397762bbd14..676be3cd9ca83c5ecc19ec5d27aff8578270018c 100644
|
| --- a/media/cast/transport/cast_transport_sender.h
|
| +++ b/media/cast/transport/cast_transport_sender.h
|
| @@ -81,11 +81,8 @@ class CastTransportSender : public base::NonThreadSafe {
|
| // The following two functions handle the encoded media frames (audio and
|
| // video) to be processed.
|
| // Frames will be encrypted, packetized and transmitted to the network.
|
| - virtual void InsertCodedAudioFrame(const EncodedAudioFrame* audio_frame,
|
| - const base::TimeTicks& recorded_time) = 0;
|
| -
|
| - virtual void InsertCodedVideoFrame(const EncodedVideoFrame* video_frame,
|
| - const base::TimeTicks& capture_time) = 0;
|
| + virtual void InsertCodedAudioFrame(const EncodedFrame& audio_frame) = 0;
|
| + virtual void InsertCodedVideoFrame(const EncodedFrame& video_frame) = 0;
|
|
|
| // Builds an RTCP packet and sends it to the network.
|
| virtual void SendRtcpFromRtpSender(uint32 packet_type_flags,
|
|
|