Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gst-plugins-bad1.0
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
gst-plugins-bad1.0
Commits
35147811
Commit
35147811
authored
1 year ago
by
Moritz Mühlenhoff
Committed by
Dylan Aïssi
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Import Debian changes 1.22.0-4+deb12u4
parent
139bfe0a
No related branches found
No related tags found
2 merge requests
!22
Backport v2024 <- v2025dev1: Update from debian/bookworm-security
,
!21
Update from debian/bookworm-security for apertis/v2025dev1
Pipeline
#671431
canceled
1 year ago
Stage: build-env
Stage: update
Stage: merge
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
debian/patches/sa-2023-0011.patch
+40
-0
40 additions, 0 deletions
debian/patches/sa-2023-0011.patch
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
with
47 additions
and
0 deletions
debian/changelog
+
6
−
0
View file @
35147811
gst-plugins-bad1.0 (1.22.0-4+deb12u4) bookworm-security; urgency=medium
* GST-2023-0011
-- Moritz Mühlenhoff <jmm@debian.org> Thu, 21 Dec 2023 00:04:36 +0100
gst-plugins-bad1.0 (1.22.0-4+deb12u3) bookworm-security; urgency=high
* Non-maintainer upload by the Security Team.
...
...
This diff is collapsed.
Click to expand it.
debian/patches/sa-2023-0011.patch
0 → 100644
+
40
−
0
View file @
35147811
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/commit/a46737a73155fe1c19fa5115df40da35426f9fb5
--- gst-plugins-bad1.0-1.22.0.orig/gst-libs/gst/codecparsers/gstav1parser.h
+++ gst-plugins-bad1.0-1.22.0/gst-libs/gst/codecparsers/gstav1parser.h
@@ -71,9 +71,8 @@
G_BEGIN_DECLS
#define GST_AV1_MAX_TILE_COUNT 512
#define GST_AV1_MAX_OPERATING_POINTS \
(GST_AV1_MAX_NUM_TEMPORAL_LAYERS * GST_AV1_MAX_NUM_SPATIAL_LAYERS)
-#define GST_AV1_MAX_SPATIAL_LAYERS 2 /* correct? */
-#define GST_AV1_MAX_TEMPORAL_GROUP_SIZE 8 /* correct? */
-#define GST_AV1_MAX_TEMPORAL_GROUP_REFERENCES 8 /* correct? */
+#define GST_AV1_MAX_TEMPORAL_GROUP_SIZE 255
+#define GST_AV1_MAX_TEMPORAL_GROUP_REFERENCES 7
#define GST_AV1_MAX_NUM_Y_POINTS 16
#define GST_AV1_MAX_NUM_CB_POINTS 16
#define GST_AV1_MAX_NUM_CR_POINTS 16
@@ -968,9 +967,9 @@
struct _GstAV1MetadataScalability {
gboolean spatial_layer_dimensions_present_flag;
gboolean spatial_layer_description_present_flag;
gboolean temporal_group_description_present_flag;
- guint16 spatial_layer_max_width[GST_AV1_MAX_SPATIAL_LAYERS];
- guint16 spatial_layer_max_height[GST_AV1_MAX_SPATIAL_LAYERS];
- guint8 spatial_layer_ref_id[GST_AV1_MAX_SPATIAL_LAYERS];
+ guint16 spatial_layer_max_width[GST_AV1_MAX_NUM_SPATIAL_LAYERS];
+ guint16 spatial_layer_max_height[GST_AV1_MAX_NUM_SPATIAL_LAYERS];
+ guint8 spatial_layer_ref_id[GST_AV1_MAX_NUM_SPATIAL_LAYERS];
guint8 temporal_group_size;
guint8 temporal_group_temporal_id[GST_AV1_MAX_TEMPORAL_GROUP_SIZE];
--- gst-plugins-bad1.0-1.22.0.orig/gst/videoparsers/gstav1parse.c
+++ gst-plugins-bad1.0-1.22.0/gst/videoparsers/gstav1parse.c
@@ -1271,7 +1271,7 @@
gst_av1_parse_handle_sequence_obu (GstAV
}
val = (self->parser->state.operating_point_idc >> 8) & 0x0f;
- for (i = 0; i < (1 << GST_AV1_MAX_SPATIAL_LAYERS); i++) {
+ for (i = 0; i < GST_AV1_MAX_NUM_SPATIAL_LAYERS; i++) {
if (val & (1 << i))
self->highest_spatial_id = i;
}
This diff is collapsed.
Click to expand it.
debian/patches/series
+
1
−
0
View file @
35147811
...
...
@@ -6,3 +6,4 @@ mxfdemux-Fix-integer-overflow-causing-out-of-bounds-.patch
mxfdemux-Check-number-of-channels-for-AES3-audio.patch
codecparsers-av1-Clip-max-tile-rows-and-cols-values.patch
mxfdemux-Store-GstMXFDemuxEssenceTrack-in-their-own-.patch
sa-2023-0011.patch
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment