Hi Marvin
On Mon, Aug 04, 2014 at 12:51:46AM +0200, Michael Niedermayer wrote:
> On Mon, Aug 04, 2014 at 12:24:27AM +0200, Marvin Scholz wrote:
> > >av_freep() should be safe to be used with NULL
> >
> > Since av_freep takes a pointer I am nearly sure that it doesn't, at
> > least I remember that
On Mon, Aug 04, 2014 at 12:24:27AM +0200, Marvin Scholz wrote:
> >av_freep() should be safe to be used with NULL
>
> Since av_freep takes a pointer I am nearly sure that it doesn't, at
> least I remember that I had some issues without the if's… But please
> correct me if I'm wrong.
in the quoted
av_freep() should be safe to be used with NULL
Since av_freep takes a pointer I am nearly sure that it doesn't, at
least I remember that I had some issues without the if's… But please
correct me if I'm wrong.
___
ffmpeg-devel mailing list
ffmpeg-dev
On Sun, Aug 03, 2014 at 11:53:21PM +0200, Marvin Scholz wrote:
> >>+if (user)
> >>+av_freep(&user);
> >>+if (headers)
> >>+av_freep(&headers);
> >
> >pointless ifs
>
> I'm pretty sure I need it, since there are possible cases where
> these are not allocated and I can't free
+if (user)
+av_freep(&user);
+if (headers)
+av_freep(&headers);
pointless ifs
I'm pretty sure I need it, since there are possible cases where these
are not allocated and I can't free them.
___
ffmpeg-devel mailing list
ffmpe
On Mon, Jul 28, 2014 at 10:36:19AM +0200, epira...@gmail.com wrote:
> From: ePirat
>
> Fix header.
Note: you should put that under the --- below so it doesn't end up in the
commit description.
> ---
> Add Icecast protocol, a convenience wrapper for the HTTP protocol
> ---
> Changelog
On Wed, Jul 23, 2014 at 02:12:16AM +0200, epira...@gmail.com wrote:
> From: ePirat
>
> Fixed Makefile and micro version
>
> ---
>
> Add Icecast protocol, a convenience wrapper for the HTTP protocol
>
> ---
> Changelog| 1 +
> configure| 1 +
> doc/general.
On 2014-07-23 01:35, epira...@gmail.com wrote:
> OBJS-$(CONFIG_HTTPS_PROTOCOL)+= http.o httpauth.o urldecode.o
> +OBJS-$(CONFIG_ICECAST_PROTOCOL) += icecast.o
> OBJS-$(CONFIG_MMSH_PROTOCOL) += mmsh.o mms.o asf.o
These should line up.
> + * Icecast p