lavd/x11grab: change error code for unsupported visuals.

pull/77/merge
Nicolas George 11 years ago
parent a65c0a3fe8
commit 36fbe3c789
  1. 6
      libavdevice/x11grab.c

@ -287,7 +287,7 @@ x11grab_read_header(AVFormatContext *s1)
} else { } else {
av_log(s1, AV_LOG_ERROR, "RGB ordering at image depth %i not supported ... aborting\n", image->bits_per_pixel); av_log(s1, AV_LOG_ERROR, "RGB ordering at image depth %i not supported ... aborting\n", image->bits_per_pixel);
av_log(s1, AV_LOG_ERROR, "color masks: r 0x%.6lx g 0x%.6lx b 0x%.6lx\n", image->red_mask, image->green_mask, image->blue_mask); av_log(s1, AV_LOG_ERROR, "color masks: r 0x%.6lx g 0x%.6lx b 0x%.6lx\n", image->red_mask, image->green_mask, image->blue_mask);
ret = AVERROR(EIO); ret = AVERROR_PATCHWELCOME;
goto out; goto out;
} }
break; break;
@ -303,7 +303,7 @@ x11grab_read_header(AVFormatContext *s1)
} else { } else {
av_log(s1, AV_LOG_ERROR,"rgb ordering at image depth %i not supported ... aborting\n", image->bits_per_pixel); av_log(s1, AV_LOG_ERROR,"rgb ordering at image depth %i not supported ... aborting\n", image->bits_per_pixel);
av_log(s1, AV_LOG_ERROR, "color masks: r 0x%.6lx g 0x%.6lx b 0x%.6lx\n", image->red_mask, image->green_mask, image->blue_mask); av_log(s1, AV_LOG_ERROR, "color masks: r 0x%.6lx g 0x%.6lx b 0x%.6lx\n", image->red_mask, image->green_mask, image->blue_mask);
ret = AVERROR(EIO); ret = AVERROR_PATCHWELCOME;
goto out; goto out;
} }
break; break;
@ -312,7 +312,7 @@ x11grab_read_header(AVFormatContext *s1)
break; break;
default: default:
av_log(s1, AV_LOG_ERROR, "image depth %i not supported ... aborting\n", image->bits_per_pixel); av_log(s1, AV_LOG_ERROR, "image depth %i not supported ... aborting\n", image->bits_per_pixel);
ret = AVERROR(EINVAL); ret = AVERROR_PATCHWELCOME;
goto out; goto out;
} }

Loading…
Cancel
Save