On Thu, Oct 15, 2015 at 2:26 AM, Luca Barbato <[email protected]> wrote: > --- > avconv.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/avconv.c b/avconv.c > index 79569f6..34f3d42 100644 > --- a/avconv.c > +++ b/avconv.c > @@ -2125,7 +2125,7 @@ static void *input_thread(void *arg) > while (!av_fifo_space(f->fifo)) > pthread_cond_wait(&f->fifo_cond, &f->fifo_lock); > > - av_dup_packet(&pkt); > + av_packet_ref(&pkt, &pkt); > av_fifo_generic_write(f->fifo, &pkt, sizeof(pkt), NULL); > > pthread_mutex_unlock(&f->fifo_lock); > -- > 2.5.0
imho 2-5 could be squashed in 7 -- Vittorio _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
