mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2025-07-18 02:22:52 +00:00
Constify frame colorspace helper functions
This commit is contained in:
parent
99885f5b4b
commit
439e8fe33f
@ -158,7 +158,7 @@ public:
|
||||
return COLORSPACE_REC_601;
|
||||
}
|
||||
|
||||
virtual int getFrameColorspace(AVFrame* frame) {
|
||||
virtual int getFrameColorspace(const AVFrame* frame) {
|
||||
// Prefer the colorspace field on the AVFrame itself
|
||||
switch (frame->colorspace) {
|
||||
case AVCOL_SPC_SMPTE170M:
|
||||
@ -176,7 +176,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
virtual bool isFrameFullRange(AVFrame* frame) {
|
||||
virtual bool isFrameFullRange(const AVFrame* frame) {
|
||||
// This handles the case where the color range is unknown,
|
||||
// so that we use Limited color range which is the default
|
||||
// behavior for Moonlight.
|
||||
|
Loading…
x
Reference in New Issue
Block a user