Skip to content
Open
Changes from 2 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
13 changes: 12 additions & 1 deletion linux/Libav.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,8 @@ TBool CodecLibAV::Recognise(const EncodedStreamInfo& aStreamInfo)
DBUG_F("[CodecLibAV] Recognise\n");
#endif

if (aStreamInfo.StreamFormat()==EncodedStreamInfo::Format::Pcm)
/*
if (aStreamInfo.Format() == EncodedStreamInfo::Format::Pcm)
{
return false;
}
Expand Down Expand Up @@ -776,7 +777,13 @@ void CodecLibAV::StreamInitialise()
iTrackLengthJiffies,
0,
false,
<<<<<<< HEAD
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're leaving conflict markers in here

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @DoomHammer,
thanks for the hind. I corrected this.
Br André

DeriveProfile(iAvCodecContext->channels));
=======
*iSpeakerProfile);


>>>>>>> 0f88520d108c8e78e77f6fd9deef52514eca228e

// Create a frame to hold the decoded packets.
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(55, 45, 101)
Expand Down Expand Up @@ -953,8 +960,12 @@ TBool CodecLibAV::TrySeek(TUint aStreamId, TUint64 aSample)
iTrackLengthJiffies,
aSample,
false,
<<<<<<< HEAD
DeriveProfile(iAvCodecContext->channels)
);
=======
*iSpeakerProfile);
>>>>>>> 0f88520d108c8e78e77f6fd9deef52514eca228e

// Ditch any PCM we have buffered.
iOutput.SetBytes(0);
Expand Down