This file contains hidden or 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
| From afd540b77f134a28039e115238306258e7553c3c Mon Sep 17 00:00:00 2001 | |
| From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= | |
| <vjaquez@igalia.com> | |
| Date: Fri, 16 Sep 2022 18:13:28 +0200 | |
| Subject: [PATCH] Workaround for crash in 515.49.15+ | |
| --- | |
| .../libs/NvVkDecoder/NvVkDecoder.cpp | 54 ------------------- | |
| 1 file changed, 54 deletions(-) |
This file contains hidden or 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
| #!/bin/bash -x | |
| git_repos="gmmlib media-driver" | |
| for i in $git_repos; do | |
| git -C $i pull -v | |
| done | |
| [ -z $GST_ENV ] && exit |
This file contains hidden or 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
| #include <gst/gst.h> | |
| #include <gst/video/colorbalance.h> | |
| typedef struct _CustomData | |
| { | |
| GstElement *pp; | |
| GstElement *pipeline; | |
| GMainLoop *loop; | |
| } CustomData; |
This file contains hidden or 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
| #!/bin/bash -ex | |
| # based on https://blogs.igalia.com/vjaquez/2018/11/23/building-gst-msdk-with-mediasdk-opensource/ | |
| prefix='/opt/intel' | |
| git_repos="gmmlib libva libva-utils media-driver MediaSDK" | |
| for i in $git_repos; do | |
| git -C $i pull -v | |
| done |
This file contains hidden or 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
| #include <stdlib.h> | |
| #include <X11/Xlib.h> | |
| #include <gdk/gdk.h> | |
| #if defined (GDK_WINDOWING_X11) | |
| #include <gdk/gdkx.h> | |
| #else | |
| #error "Only X11 is supported so far" | |
| #endif |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import csv | |
| import io | |
| import pprint | |
| import urllib.parse | |
| import urllib.request | |
| from datetime import datetime |
This file contains hidden or 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
| #!/bin/bash | |
| ALTERNATIVE="" | |
| function check_root { | |
| ID=`id -u` | |
| if [ ${ID} -ne 0 ]; then | |
| echo "You have to be root to run this script" | |
| exit 0 | |
| fi |
This file contains hidden or 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
| <?xml version="1.0" standalone="no"?> <!--*- mode: nxml -*--> | |
| <!DOCTYPE moduleset SYSTEM "moduleset.dtd"> | |
| <?xml-stylesheet type="text/xsl" href="moduleset.xsl"?> | |
| <moduleset> | |
| <repository type="git" name="gstreamer.freedesktop.org" | |
| href="http://anongit.freedesktop.org/git/gstreamer/"/> | |
| <repository type="git" name="gitorious.org" | |
| href="git@gitorious.org:"/> | |
| <repository type="git" name="git.freedesktop.org" |
This file contains hidden or 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
| #!/bin/bash | |
| export PATH=/usr/lib/ccache:${PATH} | |
| export NUMBER_OF_PROCESSORS=8 | |
| export WEBKIT_OUTPUTDIR=${PWD} | |
| export WEBKIT_EXTRA_MODULESETS=file:///home/vjaquez/my-gstreamer.modules | |
| export CCACHE_DIR=${PWD}/.ccache | |
| export CC=clang | |
| export CXX=clang++ |
This file contains hidden or 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
| #!/bin/bash | |
| QUIET=--quiet | |
| if [ x"$1" == x"-v" ]; then | |
| QUIET= | |
| fi | |
| killall ${QUIET} --older-than 1h --wait mbsync | |
| if [ $? = 0 ]; then | |
| sleep 1 |
NewerOlder