| Summary: | =media-libs/gegl-0.1.6 - ff-load.c:79: error: duplicate case value | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Raphael Mankin <raph> |
| Component: | Current packages | Assignee: | Sebastian Pipping <sping> |
| Status: | RESOLVED NEEDINFO | ||
| Severity: | normal | ||
| Priority: | Normal | ||
| Version: | unspecified | ||
| Hardware: | x86 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
| Attachments: | Build log for gegl-0.1.6 | ||
|
Description
Raphael Mankin
2011-05-10 13:12:39 UTC
Created attachment 272739 [details]
Build log for gegl-0.1.6
Please post the output of `emerge -vpq media-video/ffmpeg' too. I have worked around this by reverting both gegl and babl to 0.0.22. Mixing and matching the versions (gegl-0.1.6, babl-0.1.4), -0.0.22) does not work. The dependencies in the ebuilds should really be updated, but I don't suppose that it is terribly urgent. Ouput for ffmpeg, as requested, below: emerge -vpq media-video/ffmpeg [ebuild R ] media-video/ffmpeg-0.6_p25767 USE="3dnow 3dnowext X alsa bindist bzip2 encode hardcoded-tables mmx mmxext mp3 sdl ssse3 static-libs* vorbis x264 xvid zlib (-altivec) -amr -cpudetection -custom-cflags -debug -dirac -doc -faac -frei0r -gsm -ieee1394 -jack -jpeg2k -network -oss -pic -qt-faststart -rtmp -schroedinger -speex -test -theora -threads -v4l -v4l2 -vaapi -vdpau -vpx" VIDEO_CARDS="-nvidia" I cannot reproduce the issue. If it still matters, please compile and run this tiny C program
============================================================
#include <stdio.h>
#include <errno.h>
#include <libavutil/error.h>
int main() {
printf("AVERROR(EDOM) %d\n", AVERROR(EDOM));
printf("AVERROR(EINVAL) %d\n", AVERROR(EINVAL));
return 0;
}
============================================================
and share it's output. Mine is:
============================================================
# gcc -o 366757{,.c} && ./366757
AVERROR(EDOM) -33
AVERROR(EINVAL) -22
============================================================
Closing until I hear back. Thanks!
|