Skip to content

Commit 5ed98e0

Browse files
committed
cosmetics [noCI]
1 parent 8ed521b commit 5ed98e0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/filter_core/filter_session_js.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2053,7 +2053,7 @@ GF_Err gf_fs_load_js_api(JSContext *c, GF_FilterSession *fs)
20532053
JSFS_FilterSession *fsjs;
20542054
GF_SAFEALLOC(fsjs, JSFS_FilterSession)
20552055
if (!fsjs) return GF_OUT_OF_MEM;
2056-
//remmeber if this is the object owning the API (for GC)
2056+
//remember if this is the object owning the API (for GC)
20572057
fsjs->owns_api = (fs->js_ctx && (fs->js_ctx != c)) ? GF_FALSE : GF_TRUE;
20582058

20592059
//initialize filter class and create a single filter object in global scope

src/isomedia/media.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ GF_Err Media_GetSample(GF_MediaBox *mdia, u32 sampleNumber, GF_ISOSample **samp,
497497
if (sIDX) (*sIDX) = sdesc_idx;
498498

499499
if (out_offset) *out_offset = offset;
500-
if (!samp ) return GF_OK;
500+
if (!samp) return GF_OK;
501501

502502
(*samp)->corrupted = 0;
503503
if (mdia->information->sampleTable->TimeToSample) {

src/isomedia/stbl_read.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ GF_Err stbl_GetSampleInfos(GF_SampleTableBox *stbl, u32 sampleNumber, u64 *offse
419419
(*descIndex) = ent->sampleDescriptionIndex;
420420
(*chunkNumber) = sampleNumber;
421421
if (out_ent) *out_ent = ent;
422-
if ( stbl->ChunkOffset->type == GF_ISOM_BOX_TYPE_STCO) {
422+
if (stbl->ChunkOffset->type == GF_ISOM_BOX_TYPE_STCO) {
423423
stco = (GF_ChunkOffsetBox *)stbl->ChunkOffset;
424424
if (!stco->offsets) return GF_ISOM_INVALID_FILE;
425425
if (stco->nb_entries < sampleNumber) return GF_ISOM_INVALID_FILE;

0 commit comments

Comments
 (0)