[x264-devel] x264-devel Digest, Vol 86, Issue 4

DARSHAN PAWAR darshanp40 at gmail.com
Thu Jul 17 12:13:32 CEST 2014


Can anybody tell me where in the library the motion estimation is used for
video coding.


On Thu, Jul 17, 2014 at 3:30 PM, <x264-devel-request at videolan.org> wrote:

> Send x264-devel mailing list submissions to
>         x264-devel at videolan.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://mailman.videolan.org/listinfo/x264-devel
> or, via email, send a message with subject or body 'help' to
>         x264-devel-request at videolan.org
>
> You can reach the person managing the list at
>         x264-devel-owner at videolan.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of x264-devel digest..."
>
>
> Today's Topics:
>
>    1. [PATCH] filters: fix sizeof mismatch (Tristan Matthews)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 17 Jul 2014 00:08:15 -0400
> From: Tristan Matthews <le.businessman at gmail.com>
> To: x264-devel at videolan.org
> Subject: [x264-devel] [PATCH] filters: fix sizeof mismatch
> Message-ID:
>         <1405570095-30970-1-git-send-email-le.businessman at gmail.com>
>
> ---
>  filters/filters.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/filters/filters.c b/filters/filters.c
> index 1ea888c..079297c 100644
> --- a/filters/filters.c
> +++ b/filters/filters.c
> @@ -38,13 +38,13 @@ char **x264_split_string( char *string, char *sep, int
> limit )
>      if( sep_count == 0 )
>      {
>          if( string[0] == '\0' )
> -            return calloc( 1, sizeof( char** ) );
> -        char **ret = calloc( 2, sizeof( char** ) );
> +            return calloc( 1, sizeof( char* ) );
> +        char **ret = calloc( 2, sizeof( char* ) );
>          ret[0] = strdup( string );
>          return ret;
>      }
>
> -    char **split = calloc( ( limit > 0 ? limit : sep_count ) + 2,
> sizeof(char**) );
> +    char **split = calloc( ( limit > 0 ? limit : sep_count ) + 2,
> sizeof(char*) );
>      int i = 0;
>      char *str = strdup( string );
>      assert( str );
> @@ -104,7 +104,7 @@ char **x264_split_options( const char *opt_str, const
> char *options[] )
>      while( options[options_count] != NULL )
>          ++options_count;
>
> -    char **opts = calloc( split_count * 2 + 2, sizeof( char ** ) );
> +    char **opts = calloc( split_count * 2 + 2, sizeof( char * ) );
>      char **arg = NULL;
>      int opt = 0, found_named = 0, invalid = 0;
>      for( int i = 0; split[i] != NULL; i++, invalid = 0 )
> --
> 1.9.1
>
>
>
> ------------------------------
>
> Subject: Digest Footer
>
> _______________________________________________
> x264-devel mailing list
> x264-devel at videolan.org
> https://mailman.videolan.org/listinfo/x264-devel
>
>
> ------------------------------
>
> End of x264-devel Digest, Vol 86, Issue 4
> *****************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.videolan.org/pipermail/x264-devel/attachments/20140717/c3a1c380/attachment.html>


More information about the x264-devel mailing list