You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
fix grammar error with possessive its and update sample for audio parameter
This commit is contained in:
@@ -49,7 +49,7 @@ FFmpegReader::FFmpegReader(string path)
|
||||
missing_frames.SetMaxBytesFromInfo(OPEN_MP_NUM_PROCESSORS * 2, info.width, info.height, info.sample_rate, info.channels);
|
||||
final_cache.SetMaxBytesFromInfo(OPEN_MP_NUM_PROCESSORS * 2, info.width, info.height, info.sample_rate, info.channels);
|
||||
|
||||
// Open and Close the reader, to populate it's attributes (such as height, width, etc...)
|
||||
// Open and Close the reader, to populate its attributes (such as height, width, etc...)
|
||||
Open();
|
||||
Close();
|
||||
}
|
||||
@@ -71,7 +71,7 @@ FFmpegReader::FFmpegReader(string path, bool inspect_reader)
|
||||
missing_frames.SetMaxBytesFromInfo(OPEN_MP_NUM_PROCESSORS * 2, info.width, info.height, info.sample_rate, info.channels);
|
||||
final_cache.SetMaxBytesFromInfo(OPEN_MP_NUM_PROCESSORS * 2, info.width, info.height, info.sample_rate, info.channels);
|
||||
|
||||
// Open and Close the reader, to populate it's attributes (such as height, width, etc...)
|
||||
// Open and Close the reader, to populate its attributes (such as height, width, etc...)
|
||||
if (inspect_reader) {
|
||||
Open();
|
||||
Close();
|
||||
@@ -1698,7 +1698,7 @@ bool FFmpegReader::IsPartialFrame(int64_t requested_frame) {
|
||||
return seek_trash;
|
||||
}
|
||||
|
||||
// Check if a frame is missing and attempt to replace it's frame image (and
|
||||
// Check if a frame is missing and attempt to replace its frame image (and
|
||||
bool FFmpegReader::CheckMissingFrame(int64_t requested_frame)
|
||||
{
|
||||
// Lock
|
||||
@@ -2025,7 +2025,7 @@ void FFmpegReader::CheckFPS()
|
||||
}
|
||||
}
|
||||
|
||||
// Remove AVFrame from cache (and deallocate it's memory)
|
||||
// Remove AVFrame from cache (and deallocate its memory)
|
||||
void FFmpegReader::RemoveAVFrame(AVFrame* remove_frame)
|
||||
{
|
||||
// Remove pFrame (if exists)
|
||||
@@ -2042,7 +2042,7 @@ void FFmpegReader::RemoveAVFrame(AVFrame* remove_frame)
|
||||
}
|
||||
}
|
||||
|
||||
// Remove AVPacket from cache (and deallocate it's memory)
|
||||
// Remove AVPacket from cache (and deallocate its memory)
|
||||
void FFmpegReader::RemoveAVPacket(AVPacket* remove_packet)
|
||||
{
|
||||
// deallocate memory for packet
|
||||
|
||||
Reference in New Issue
Block a user