From ddf14a1e1d0c19f6870f9e228c478e5c4b753d1e Mon Sep 17 00:00:00 2001 From: Zain Rizvi Date: Tue, 12 Aug 2025 15:58:31 -0500 Subject: [PATCH 1/2] Replace 'pytorch-labs' with 'meta-pytorch' in 1 files --- src/torchcodec/_core/SingleStreamDecoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torchcodec/_core/SingleStreamDecoder.cpp b/src/torchcodec/_core/SingleStreamDecoder.cpp index 6c2cdd490..573202769 100644 --- a/src/torchcodec/_core/SingleStreamDecoder.cpp +++ b/src/torchcodec/_core/SingleStreamDecoder.cpp @@ -1056,7 +1056,7 @@ bool SingleStreamDecoder::canWeAvoidSeeking() const { if (lastDecodedAvFramePts == cursor_) { // We are seeking to the exact same frame as we are currently at. Without // caching we have to rewind back and decode the frame again. - // TODO: https://github.com/pytorch-labs/torchcodec/issues/84 we could + // TODO: https://github.com/meta-pytorch/torchcodec/issues/84 we could // implement caching. return false; } From 9ecbb88be934f29c8c630fdc5e5d9c26fd4acbbb Mon Sep 17 00:00:00 2001 From: Zain Rizvi Date: Tue, 12 Aug 2025 16:16:08 -0500 Subject: [PATCH 2/2] Update SingleStreamDecoder.cpp --- src/torchcodec/_core/SingleStreamDecoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torchcodec/_core/SingleStreamDecoder.cpp b/src/torchcodec/_core/SingleStreamDecoder.cpp index 573202769..9cfc652ad 100644 --- a/src/torchcodec/_core/SingleStreamDecoder.cpp +++ b/src/torchcodec/_core/SingleStreamDecoder.cpp @@ -1056,7 +1056,7 @@ bool SingleStreamDecoder::canWeAvoidSeeking() const { if (lastDecodedAvFramePts == cursor_) { // We are seeking to the exact same frame as we are currently at. Without // caching we have to rewind back and decode the frame again. - // TODO: https://github.com/meta-pytorch/torchcodec/issues/84 we could + // TODO: https://github.com/pytorch/torchcodec/issues/84 we could // implement caching. return false; }