* meta-angstrom commit 75f0f25e breaks build of opencv from meta-openembedded
@ 2015-03-09 11:52 Steffen Sledz
2015-03-10 13:50 ` Koen Kooi
0 siblings, 1 reply; 3+ messages in thread
From: Steffen Sledz @ 2015-03-09 11:52 UTC (permalink / raw)
To: openembedded-devel, Koen Kooi; +Cc: Otavio Salvador, angstrom-distro-devel
Commit 75f0f25e55f0745a011640b5c81d88be99366f45 in meta-angstrom/recipes-tweaks (branch angstrom-v2014.12-yocto1.7) introduces version 10.5 of libav.
This version does no longer provide defines like CODEC_ID_H264 which are needed for opencv 2.4.9 from meta-openembedded/meta-oe/recipes-support (branch dizzy).
---------------------> snip <----------------------
.../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:104:7: error: 'CODEC_ID_H264' was not declared in this scope
{ CODEC_ID_H264, MKTAG('H', '2', '6', '4') },
^
.../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:105:7: error: 'CODEC_ID_H264' was not declared in this scope
{ CODEC_ID_H264, MKTAG('h', '2', '6', '4') },
^
.../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:106:7: error: 'CODEC_ID_H264' was not declared in this scope
{ CODEC_ID_H264, MKTAG('X', '2', '6', '4') },
^
.../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:107:7: error: 'CODEC_ID_H264' was not declared in this scope
{ CODEC_ID_H264, MKTAG('x', '2', '6', '4') },
...
---------------------> snip <----------------------
I'm not sure if this problem occurs in the master branches too, but the dizzy/angstrom-v2014.12-yocto1.7 branches are unusable for some of our applications beacause of this problem at the moment. :(
Steffen
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: meta-angstrom commit 75f0f25e breaks build of opencv from meta-openembedded
2015-03-09 11:52 meta-angstrom commit 75f0f25e breaks build of opencv from meta-openembedded Steffen Sledz
@ 2015-03-10 13:50 ` Koen Kooi
2015-03-10 14:38 ` Steffen Sledz
0 siblings, 1 reply; 3+ messages in thread
From: Koen Kooi @ 2015-03-10 13:50 UTC (permalink / raw)
To: Steffen Sledz; +Cc: Otavio Salvador, openembedded-devel, angstrom-distro-devel
> Op 9 mrt. 2015, om 12:52 heeft Steffen Sledz <sledz@dresearch-fe.de> het volgende geschreven:
>
> Commit 75f0f25e55f0745a011640b5c81d88be99366f45 in meta-angstrom/recipes-tweaks (branch angstrom-v2014.12-yocto1.7) introduces version 10.5 of libav.
>
> This version does no longer provide defines like CODEC_ID_H264 which are needed for opencv 2.4.9 from meta-openembedded/meta-oe/recipes-support (branch dizzy).
>
> ---------------------> snip <----------------------
> .../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:104:7: error: 'CODEC_ID_H264' was not declared in this scope
> { CODEC_ID_H264, MKTAG('H', '2', '6', '4') },
> ^
> .../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:105:7: error: 'CODEC_ID_H264' was not declared in this scope
> { CODEC_ID_H264, MKTAG('h', '2', '6', '4') },
> ^
> .../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:106:7: error: 'CODEC_ID_H264' was not declared in this scope
> { CODEC_ID_H264, MKTAG('X', '2', '6', '4') },
> ^
> .../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:107:7: error: 'CODEC_ID_H264' was not declared in this scope
> { CODEC_ID_H264, MKTAG('x', '2', '6', '4') },
> ...
> ---------------------> snip <----------------------
>
> I'm not sure if this problem occurs in the master branches too, but the dizzy/angstrom-v2014.12-yocto1.7 branches are unusable for some of our applications beacause of this problem at the moment. :(
Sorry about that, I looked at that this weekend, but forgot to push the patches to meta-angstrom. 744d6439175058909002d1e22439e93945d53e22 should fix the issues you are seeing.
regards,
Koen
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: meta-angstrom commit 75f0f25e breaks build of opencv from meta-openembedded
2015-03-10 13:50 ` Koen Kooi
@ 2015-03-10 14:38 ` Steffen Sledz
0 siblings, 0 replies; 3+ messages in thread
From: Steffen Sledz @ 2015-03-10 14:38 UTC (permalink / raw)
To: Koen Kooi; +Cc: Otavio Salvador, openembedded-devel, angstrom-distro-devel
On 10.03.2015 14:50, Koen Kooi wrote:
>
>> Op 9 mrt. 2015, om 12:52 heeft Steffen Sledz <sledz@dresearch-fe.de> het volgende geschreven:
>>
>> Commit 75f0f25e55f0745a011640b5c81d88be99366f45 in meta-angstrom/recipes-tweaks (branch angstrom-v2014.12-yocto1.7) introduces version 10.5 of libav.
>>
>> This version does no longer provide defines like CODEC_ID_H264 which are needed for opencv 2.4.9 from meta-openembedded/meta-oe/recipes-support (branch dizzy).
>>
>> ---------------------> snip <----------------------
>> .../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:104:7: error: 'CODEC_ID_H264' was not declared in this scope
>> { CODEC_ID_H264, MKTAG('H', '2', '6', '4') },
>> ^
>> .../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:105:7: error: 'CODEC_ID_H264' was not declared in this scope
>> { CODEC_ID_H264, MKTAG('h', '2', '6', '4') },
>> ^
>> .../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:106:7: error: 'CODEC_ID_H264' was not declared in this scope
>> { CODEC_ID_H264, MKTAG('X', '2', '6', '4') },
>> ^
>> .../tmp-glibc/work/armv5te-angstrom-linux-gnueabi/opencv/2.4.9+gitAUTOINC+df8e28283f-r0/git/modules/highgui/src/ffmpeg_codecs.hpp:107:7: error: 'CODEC_ID_H264' was not declared in this scope
>> { CODEC_ID_H264, MKTAG('x', '2', '6', '4') },
>> ...
>> ---------------------> snip <----------------------
>>
>> I'm not sure if this problem occurs in the master branches too, but the dizzy/angstrom-v2014.12-yocto1.7 branches are unusable for some of our applications beacause of this problem at the moment. :(
>
> Sorry about that, I looked at that this weekend, but forgot to push the patches to meta-angstrom. 744d6439175058909002d1e22439e93945d53e22 should fix the issues you are seeing.
Yupp. Fixed.
Thx,
Steffen
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-03-10 14:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-09 11:52 meta-angstrom commit 75f0f25e breaks build of opencv from meta-openembedded Steffen Sledz
2015-03-10 13:50 ` Koen Kooi
2015-03-10 14:38 ` Steffen Sledz
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.