Re: [FFmpeg-devel] [PATCH 1/2] ffplay: factorize frame queue operations

2014-09-17 Thread Marton Balint
On Wed, 17 Sep 2014, Michael Niedermayer wrote: On Wed, Sep 17, 2014 at 03:47:09AM +0200, Michael Niedermayer wrote: On Wed, Sep 17, 2014 at 12:19:49AM +0200, Marton Balint wrote: On Sat, 6 Sep 2014, Marton Balint wrote: Create a generic frame and a frame queue struct to handle video pictu

Re: [FFmpeg-devel] [PATCH 1/2] ffplay: factorize frame queue operations

2014-09-16 Thread Michael Niedermayer
On Wed, Sep 17, 2014 at 03:47:09AM +0200, Michael Niedermayer wrote: > On Wed, Sep 17, 2014 at 12:19:49AM +0200, Marton Balint wrote: > > > > On Sat, 6 Sep 2014, Marton Balint wrote: > > > > >Create a generic frame and a frame queue struct to handle video picture > > >queues > > >and subtitle pi

Re: [FFmpeg-devel] [PATCH 1/2] ffplay: factorize frame queue operations

2014-09-16 Thread Michael Niedermayer
On Wed, Sep 17, 2014 at 12:19:49AM +0200, Marton Balint wrote: > > On Sat, 6 Sep 2014, Marton Balint wrote: > > >Create a generic frame and a frame queue struct to handle video picture > >queues > >and subtitle picture queues with common code. Also add the possibility to > >queue > >AVFrames, h

Re: [FFmpeg-devel] [PATCH 1/2] ffplay: factorize frame queue operations

2014-09-16 Thread Marton Balint
On Sat, 6 Sep 2014, Marton Balint wrote: Create a generic frame and a frame queue struct to handle video picture queues and subtitle picture queues with common code. Also add the possibility to queue AVFrames, however at the moment we only use SDL_Overlay buffers for video and AVSubtitles for s

[FFmpeg-devel] [PATCH 1/2] ffplay: factorize frame queue operations

2014-09-06 Thread Marton Balint
Create a generic frame and a frame queue struct to handle video picture queues and subtitle picture queues with common code. Also add the possibility to queue AVFrames, however at the moment we only use SDL_Overlay buffers for video and AVSubtitles for subtitles. Signed-off-by: Marton Balint ---