On Wednesday, July 31, 2013, Diego Biurrun wrote:

> ---
>  libavcodec/h264_sei.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c
> index df4c49f..c88f203 100644
> --- a/libavcodec/h264_sei.c
> +++ b/libavcodec/h264_sei.c
> @@ -106,7 +106,7 @@ static int decode_unregistered_user_data(H264Context
> *h, int size){
>      }
>
>      user_data[i]= 0;
> -    e= sscanf(user_data+16, "x264 - core %d"/*%s - H.264/MPEG-4 AVC codec
> - Copyleft 2005 - http://www.videolan.org/x264.html*/, &build);
> +    e = sscanf(user_data + 16, "x264 - core %d", &build);
>      if(e==1 && build>0)
>          h->x264_build= build;



Maybe instead of removing it, the full format could be saved in a comment
on top of that line.
Ok otherwise.
Vittorio
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to