summaryrefslogtreecommitdiffstats
path: root/bsp/meta-ti/recipes-graphics/omapfbplay/files
diff options
context:
space:
mode:
Diffstat (limited to 'bsp/meta-ti/recipes-graphics/omapfbplay/files')
-rw-r--r--bsp/meta-ti/recipes-graphics/omapfbplay/files/0001-omapfbplay-switch-CODEC_TYPE_VIDEO-to-AVMEDIA_TYPE_V.patch26
-rw-r--r--bsp/meta-ti/recipes-graphics/omapfbplay/files/omapfbplay-errorhandling.patch34
2 files changed, 0 insertions, 60 deletions
diff --git a/bsp/meta-ti/recipes-graphics/omapfbplay/files/0001-omapfbplay-switch-CODEC_TYPE_VIDEO-to-AVMEDIA_TYPE_V.patch b/bsp/meta-ti/recipes-graphics/omapfbplay/files/0001-omapfbplay-switch-CODEC_TYPE_VIDEO-to-AVMEDIA_TYPE_V.patch
deleted file mode 100644
index e01fddbf..00000000
--- a/bsp/meta-ti/recipes-graphics/omapfbplay/files/0001-omapfbplay-switch-CODEC_TYPE_VIDEO-to-AVMEDIA_TYPE_V.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 71670f4a067efc169018a9ec9321ccc9af3bbd59 Mon Sep 17 00:00:00 2001
-From: Roger Monk <r-monk@ti.com>
-Date: Thu, 10 May 2012 14:50:11 +0100
-Subject: [PATCH] omapfbplay: switch CODEC_TYPE_VIDEO to AVMEDIA_TYPE_VIDEO
-
-Signed-off-by: Roger Monk <r-monk@ti.com>
----
- omapfbplay.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/omapfbplay.c b/omapfbplay.c
-index ad35bd5..818cf2c 100644
---- a/omapfbplay.c
-+++ b/omapfbplay.c
-@@ -74,7 +74,7 @@ find_stream(AVFormatContext *afc)
- int i;
-
- for (i = 0; i < afc->nb_streams; i++) {
-- if (afc->streams[i]->codec->codec_type == CODEC_TYPE_VIDEO && !st)
-+ if (afc->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO && !st)
- st = afc->streams[i];
- else
- afc->streams[i]->discard = AVDISCARD_ALL;
---
-1.7.0.4
-
diff --git a/bsp/meta-ti/recipes-graphics/omapfbplay/files/omapfbplay-errorhandling.patch b/bsp/meta-ti/recipes-graphics/omapfbplay/files/omapfbplay-errorhandling.patch
deleted file mode 100644
index 7dd544f8..00000000
--- a/bsp/meta-ti/recipes-graphics/omapfbplay/files/omapfbplay-errorhandling.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From e321ae7df57ada9ecc8c155fa4e5511c96ef5db3 Mon Sep 17 00:00:00 2001
-From: Rob Clark <rob@ti.com>
-Date: Fri, 18 Mar 2011 12:40:51 -0500
-Subject: [PATCH] dce: differentiate between fatal and non-fatal errors
-
-For streams with errors, the codec will throw back an error. But not
-all errors are fatal.
----
- dce.c | 10 ++++++++--
- 1 files changed, 8 insertions(+), 2 deletions(-)
-
-diff --git a/dce.c b/dce.c
-index ab7ad0a..88f175e 100644
---- a/dce.c
-+++ b/dce.c
-@@ -270,8 +270,14 @@ static int dce_decode(AVPacket *p)
-
- err = VIDDEC3_process(codec, inbufs, outbufs, in_args, out_args);
- if (err) {
-- fprintf(stderr, "VIDDEC3_process() error %d\n", err);
-- return -1;
-+ fprintf(stderr, "VIDDEC3_process() error %d %08x\n", err,
-+ out_args->extendedError);
-+ /* for non-fatal errors, keep going.. a non-fatal error could
-+ * just indicate an error in the input stream which the codec
-+ * was able to conceal
-+ */
-+ if (XDM_ISFATALERROR(out_args->extendedError))
-+ return -1;
- }
-
- for (i = 0; i < out_args->outputID[i]; i++) {
---
-1.7.1