-
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add fixes for warning on overlay filters
- Loading branch information
1 parent
e6223ad
commit 638e766
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
debian/patches/0022-add-fixes-for-warning-on-overlay-filters.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Index: jellyfin-ffmpeg/libavfilter/buffersrc.c | ||
=================================================================== | ||
--- jellyfin-ffmpeg.orig/libavfilter/buffersrc.c | ||
+++ jellyfin-ffmpeg/libavfilter/buffersrc.c | ||
@@ -69,9 +69,9 @@ typedef struct BufferSourceContext { | ||
|
||
#define CHECK_VIDEO_PARAM_CHANGE(s, c, width, height, format, pts)\ | ||
if (c->w != width || c->h != height || c->pix_fmt != format) {\ | ||
- av_log(s, AV_LOG_INFO, "filter context - w: %d h: %d fmt: %d, incoming frame - w: %d h: %d fmt: %d pts_time: %s\n",\ | ||
+ av_log(s, AV_LOG_DEBUG, "filter context - w: %d h: %d fmt: %d, incoming frame - w: %d h: %d fmt: %d pts_time: %s\n",\ | ||
c->w, c->h, c->pix_fmt, width, height, format, av_ts2timestr(pts, &s->outputs[0]->time_base));\ | ||
- av_log(s, AV_LOG_WARNING, "Changing video frame properties on the fly is not supported by all filters.\n");\ | ||
+ av_log(s, AV_LOG_DEBUG, "Changing video frame properties on the fly is not supported by all filters.\n");\ | ||
} | ||
|
||
#define CHECK_AUDIO_PARAM_CHANGE(s, c, srate, ch_layout, ch_count, format, pts)\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters