On Sun, Oct 08, 2017 at 16:49:58 +0100, Mark Thompson wrote:
>      switch (avctx->profile) {
> +    case FF_PROFILE_H264_BASELINE:
> +        av_log(avctx, AV_LOG_WARNING, "H.264 baseline profile is not "
> +               "supported, using constrained baseline profile instead.\n");
> +        avctx->profile = FF_PROFILE_H264_CONSTRAINED_BASELINE;
>      case FF_PROFILE_H264_CONSTRAINED_BASELINE:

I recall a discussion that linting/analysis tools such as Coverty
require a fall-through to be marked as such.

>         /* fall-through */
>     case FF_PROFILE_H264_CONSTRAINED_BASELINE:

Cheers,
Moritz
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to