On 24/03/14 01:24, Vittorio Giovara wrote:
> From: Luca Barbato <[email protected]>
> 
> Signed-off-by: Vittorio Giovara <[email protected]>
> ---
>  avconv.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/avconv.c b/avconv.c
> index 13e6778..10f0eef 100644
> --- a/avconv.c
> +++ b/avconv.c
> @@ -512,7 +512,9 @@ static void do_video_out(AVFormatContext *s,
>          in_picture->pts != AV_NOPTS_VALUE &&
>          in_picture->pts < ost->sync_opts) {
>          nb_frames_drop++;
> -        av_log(NULL, AV_LOG_VERBOSE, "*** drop!\n");
> +        av_log(NULL, AV_LOG_WARNING,
> +               "*** dropping frame %d from stream %d at ts %"PRId64"\n",
> +               ost->frame_number, ost->st->index, in_picture->pts);
>          return;
>      }
>  
> 

Push it as your since you redid it =)

lu
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to