Re: [FFmpeg-devel] [PATCH]lavd/v4l2: Use AVSTREAM_PARSE_FULL_ONCE for h264

2015-08-04 Thread Dewangan, Hitesh Kumar
Remove me from this group please On Jul 30, 2015 6:06 AM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Carl Eugen Hoyos cehoyos at ag.or.at writes: Attached patch suggested and tested by noah fixes ticket #4644. diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index 64ac09c..5683731

Re: [FFmpeg-devel] [PATCH]lavd/v4l2: Use AVSTREAM_PARSE_FULL_ONCE for h264

2015-08-04 Thread Carl Eugen Hoyos
Michael Niedermayer michael at niedermayer.cc writes: else if (codec_id == AV_CODEC_ID_H264) { -st-need_parsing = AVSTREAM_PARSE_HEADERS; +st-need_parsing = AVSTREAM_PARSE_FULL_ONCE; Ping, the OP has updated the ticket. patch should be ok then Pushed and

Re: [FFmpeg-devel] [PATCH]lavd/v4l2: Use AVSTREAM_PARSE_FULL_ONCE for h264

2015-07-29 Thread Michael Niedermayer
On Thu, Jul 30, 2015 at 12:36:09AM +, Carl Eugen Hoyos wrote: Carl Eugen Hoyos cehoyos at ag.or.at writes: Attached patch suggested and tested by noah fixes ticket #4644. diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index 64ac09c..5683731 100644 --- a/libavdevice/v4l2.c

Re: [FFmpeg-devel] [PATCH]lavd/v4l2: Use AVSTREAM_PARSE_FULL_ONCE for h264

2015-07-10 Thread Hendrik Leppkes
On Fri, Jul 10, 2015 at 10:12 AM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Hi! Attached patch suggested and tested by noah fixes ticket #4644. Please comment, Carl Eugen _FULL would seem to be a more logical option than FULL_ONCE to me. Frames will constantly need proper splitting, not only

Re: [FFmpeg-devel] [PATCH]lavd/v4l2: Use AVSTREAM_PARSE_FULL_ONCE for h264

2015-07-10 Thread Carl Eugen Hoyos
Hendrik Leppkes h.leppkes at gmail.com writes: _FULL would seem to be a more logical option than FULL_ONCE to me. Frames will constantly need proper splitting, not only once at the beginning. I unfortunately cannot test, so I cannot really comment. Carl Eugen

Re: [FFmpeg-devel] [PATCH]lavd/v4l2: Use AVSTREAM_PARSE_FULL_ONCE for h264

2015-07-10 Thread Carl Eugen Hoyos
Michael Niedermayer michael at niedermayer.cc writes: ONCE would be better if it works I can confirm that the OP claimed that it works. Carl Eugen ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH]lavd/v4l2: Use AVSTREAM_PARSE_FULL_ONCE for h264

2015-07-10 Thread Hendrik Leppkes
On Fri, Jul 10, 2015 at 1:45 PM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Michael Niedermayer michael at niedermayer.cc writes: ONCE would be better if it works I can confirm that the OP claimed that it works. With VLC, which might do its own video parsing on top, so results may be invalid.