Re: [PATCH 06/11] [media] coda: delay coda_fill_bitstream()

2014-07-17 Thread Philipp Zabel
Hi Hans, thank you for the review. Am Donnerstag, den 17.07.2014, 18:17 +0200 schrieb Hans Verkuil: > > @@ -2272,6 +2273,15 @@ static int coda_start_streaming(struct vb2_queue *q, > > unsigned int count) > > q_data_src = get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT); > > if (q->type == V4L

Re: [PATCH 06/11] [media] coda: delay coda_fill_bitstream()

2014-07-17 Thread Hans Verkuil
On 07/17/2014 06:05 PM, Philipp Zabel wrote: > From: Michael Olbrich > > coda_fill_bitstream() calls v4l2_m2m_buf_done() which is no longer allowed > before streaming was started. > Delay coda_fill_bitstream() until coda_start_streaming() and explicitly set > 'start_streaming_called' before calli

[PATCH 06/11] [media] coda: delay coda_fill_bitstream()

2014-07-17 Thread Philipp Zabel
From: Michael Olbrich coda_fill_bitstream() calls v4l2_m2m_buf_done() which is no longer allowed before streaming was started. Delay coda_fill_bitstream() until coda_start_streaming() and explicitly set 'start_streaming_called' before calling coda_fill_bitstream() Signed-off-by: Michael Olbrich