[FFmpeg-devel] [PATCH v2] avformat/apngdec: validate frame dimensions.

2014-11-26 Thread Benoit Fouet
--- libavformat/apngdec.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libavformat/apngdec.c b/libavformat/apngdec.c index dac71f1..1b59b82 100644 --- a/libavformat/apngdec.c +++ b/libavformat/apngdec.c @@ -295,7 +295,11 @@ static int decode_fctl_chunk(AVFormatContext

Re: [FFmpeg-devel] [PATCH] lavf/apngdec: use AVStream.time_base instead of r_frame_rate

2014-11-26 Thread Benoit Fouet
Hi, - Mail original - On 25/11/14 6:53 PM, Benoit Fouet wrote: i suggest to use set_pts_info to set a reasonable precisse timebase something like one millionth or billionth or similar in base 2. and then set pts based on these delays and the previous timestamp James, do you

[FFmpeg-devel] [PATCH] Add NVENC encoder

2014-11-26 Thread Timo Rothenpieler
This patch adds support for encoding with Nvidia NVENC on Windows and Linux. I'm not sure if this needs to be flagged as nonfree. As far as I'm aware, it should not affect how the resulting binaries can be redistributed. The only dependency this has is the nvEncodeAPI.h from the NVENC SDK,

[FFmpeg-devel] [PATCH] avformat/apngdec: use packet pts and duration instead of altering stream framerate.

2014-11-26 Thread Benoit Fouet
--- libavformat/apngdec.c | 15 --- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/libavformat/apngdec.c b/libavformat/apngdec.c index 1b59b82..276d765 100644 --- a/libavformat/apngdec.c +++ b/libavformat/apngdec.c @@ -44,6 +44,9 @@ typedef struct APNGDemuxContext {

Re: [FFmpeg-devel] [PATCH] Add NVENC encoder

2014-11-26 Thread Carl Eugen Hoyos
Timo Rothenpieler timo at rothenpieler.org writes: I'm not sure if this needs to be flagged as nonfree. Please mark it as non-free, the header clearly says that it must not be used for open-source software. Please use tools/patcheck on your patchfile: It shows many issues most of which you

Re: [FFmpeg-devel] [PATCH] Add NVENC encoder

2014-11-26 Thread Hendrik Leppkes
On Wed, Nov 26, 2014 at 11:38 AM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Timo Rothenpieler timo at rothenpieler.org writes: I'm not sure if this needs to be flagged as nonfree. Please mark it as non-free, the header clearly says that it must not be used for open-source software Where

Re: [FFmpeg-devel] [PATCH] avformat/apngdec: use packet pts and duration instead of altering stream framerate.

2014-11-26 Thread Michael Niedermayer
On Wed, Nov 26, 2014 at 11:22:45AM +0100, Benoit Fouet wrote: --- libavformat/apngdec.c | 15 --- 1 file changed, 12 insertions(+), 3 deletions(-) applied thanks [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Those who are too smart to engage

Re: [FFmpeg-devel] [PATCH] Add NVENC encoder

2014-11-26 Thread Timo Rothenpieler
Please mark it as non-free, the header clearly says that it must not be used for open-source software. It only says not to distribute the header, the compiled binary and the code using it should be free to distribute. Please use tools/patcheck on your patchfile: It shows many issues most of

Re: [FFmpeg-devel] [PATCH] Add NVENC encoder

2014-11-26 Thread Carl Eugen Hoyos
Timo Rothenpieler timo at rothenpieler.org writes: Please mark it as non-free, the header clearly says that it must not be used for open-source software. It only says not to distribute the header, the compiled binary and the code using it should be free to distribute. I cannot read it

Re: [FFmpeg-devel] [PATCH] Add NVENC encoder

2014-11-26 Thread Timo Rothenpieler
I cannot read it like this but I am not a native speaker. Maybe you could mark it as non-free until the FSF tells us their interpretation? Allright, new patch is attached. ff_nvenc_encoder is missing pix_fmts afaict but consider waiting for a real review. Yes, that's intended. It uses

Re: [FFmpeg-devel] [PATCH] Add NVENC encoder

2014-11-26 Thread Hendrik Leppkes
On Wed, Nov 26, 2014 at 2:35 PM, Carl Eugen Hoyos ceho...@ag.or.at wrote: Timo Rothenpieler timo at rothenpieler.org writes: Please mark it as non-free, the header clearly says that it must not be used for open-source software. It only says not to distribute the header, the compiled

Re: [FFmpeg-devel] [PATCH 2/2] ffserver: dont leak pb_buffer

2014-11-26 Thread Reynaldo H. Verdejo Pinochet
Feel free to push please. Thanks a lot -- Reynaldo ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 1/2] ffserver: dont leak child arguments

2014-11-26 Thread Reynaldo H. Verdejo Pinochet
Hi On 11/20/2014 08:51 PM, Lukasz Marek wrote: [..] } diff --git a/ffserver_config.c b/ffserver_config.c index 02c8431..a235142 100644 --- a/ffserver_config.c +++ b/ffserver_config.c @@ -31,6 +31,8 @@ #include cmdutils.h #include ffserver_config.h +#define MAX_CHILD_ARGS 64

Re: [FFmpeg-devel] [PATCH 08/11] ffserver: export recommented encoder configuration

2014-11-26 Thread Reynaldo H. Verdejo Pinochet
Hi Lukasz. Sorry for the delay. Patch looks good. Feel free to push. Bests, -- Reynaldo H. Verdejo Pinochet Open Source Group Samsung Research America / Silicon Valley ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

[FFmpeg-devel] [PATCH] v210enc: Add SIMD optimised 8-bit and 10-bit encoders

2014-11-26 Thread Kieran Kunhya
--- libavcodec/v210enc.c | 191 +- libavcodec/v210enc.h | 33 libavcodec/x86/Makefile | 2 + libavcodec/x86/v210enc.asm| 146 libavcodec/x86/v210enc_init.c | 37

Re: [FFmpeg-devel] [PATCH] v210enc: Add SIMD optimised 8-bit and 10-bit encoders

2014-11-26 Thread Michael Niedermayer
On Wed, Nov 26, 2014 at 03:59:14PM +, Kieran Kunhya wrote: --- libavcodec/v210enc.c | 191 +- libavcodec/v210enc.h | 33 libavcodec/x86/Makefile | 2 + libavcodec/x86/v210enc.asm| 146

Re: [FFmpeg-devel] [PATCH] v210enc: Add SIMD optimised 8-bit and 10-bit encoders

2014-11-26 Thread Michael Niedermayer
On Wed, Nov 26, 2014 at 05:44:37PM +0100, Michael Niedermayer wrote: On Wed, Nov 26, 2014 at 03:59:14PM +, Kieran Kunhya wrote: --- libavcodec/v210enc.c | 191 +- libavcodec/v210enc.h | 33 libavcodec/x86/Makefile

Re: [FFmpeg-devel] [PATCH] v210enc: Add SIMD optimised 8-bit and 10-bit encoders

2014-11-26 Thread Kieran Kunhya
v210_enc_chroma_shuf1_8: db 0,-1,1,-1,2,-1,3,-1,8,-1,9,-1,10,-1,11,-1 -v210_enc_chroma_shuf2_8: db 4,-1,5,-1,6,-1,7,-1,12,-1,13,-1,14,-1,15,-1 +v210_enc_chroma_shuf2_8: db 3,-1,4,-1,5,-1,7,-1,11,-1,12,-1,13,-1,15,-1 v210_enc_chroma_mult_8: dw 4,16,64,0,64,4,16,0 Thanks Th

Re: [FFmpeg-devel] [PATCH] Add NVENC encoder

2014-11-26 Thread Nicolas George
Le sextidi 6 frimaire, an CCXXIII, Hendrik Leppkes a écrit : Thats just wrong. There is not one line of proprietary/non-free code that gets included or linked in libavcodec. (IANAL) I do not think it works that way. You could apply the same reasoning when linking a proprietary software with a

Re: [FFmpeg-devel] [PATCHv3] v210enc: Add SIMD optimised 8-bit and 10-bit encoders

2014-11-26 Thread James Almer
On 26/11/14 4:33 PM, Kieran Kunhya wrote: --- libavcodec/v210enc.c | 191 +- libavcodec/v210enc.h | 33 libavcodec/x86/Makefile | 2 + libavcodec/x86/v210enc.asm| 146

Re: [FFmpeg-devel] [PATCHv3] v210enc: Add SIMD optimised 8-bit and 10-bit encoders

2014-11-26 Thread Michael Niedermayer
On Wed, Nov 26, 2014 at 04:48:09PM -0300, James Almer wrote: On 26/11/14 4:33 PM, Kieran Kunhya wrote: --- libavcodec/v210enc.c | 191 +- libavcodec/v210enc.h | 33 libavcodec/x86/Makefile | 2 +

Re: [FFmpeg-devel] [PATCH 1/2] lavfi/ebur128: add support for smaller video sizes

2014-11-26 Thread Clément Bœsch
On Sat, Nov 22, 2014 at 03:28:06PM +0100, Marton Balint wrote: On Fri, 21 Nov 2014, Clément Bœsch wrote: (sorry for the delay) On Sun, Nov 16, 2014 at 10:53:15PM +0100, Marton Balint wrote: Signed-off-by: Marton Balint c...@passwd.hu --- doc/filters.texi| 4 ++--

Re: [FFmpeg-devel] [PATCH] avcodec/samidec: fix misposition of subtitles caused by rounding

2014-11-26 Thread Clément Bœsch
On Tue, Nov 25, 2014 at 06:07:30PM +0900, Jeong-Hoon Seo wrote: SAMI and ASS have different precision of duration in FFMPEG (SAMI: millisecond, ASS: centisecond) Sometimes, start-time of current subtitle is overrun with end-time of previous one by rounding process This led to misposition of

Re: [FFmpeg-devel] [PATCH 01/10] avfilter/signalstats: fix different buffers for out frame if burn is enabled

2014-11-26 Thread Clément Bœsch
Patchset applied. -- Clément B. pgpqH6GUc6ZoG.pgp Description: PGP signature ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] Add NVENC encoder

2014-11-26 Thread Reimar Döffinger
On 26.11.2014, at 14:58, Timo Rothenpieler t...@rothenpieler.org wrote: I cannot read it like this but I am not a native speaker. Maybe you could mark it as non-free until the FSF tells us their interpretation? Allright, new patch is attached. ff_nvenc_encoder is missing pix_fmts afaict

[FFmpeg-devel] [PATCH] avformat/mov: strengthen some table allocations

2014-11-26 Thread Clément Bœsch
From: Clément Bœsch clem...@stupeflix.com --- libavformat/mov.c | 48 +++- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index a71e36d..5be683e 100644 --- a/libavformat/mov.c +++

Re: [FFmpeg-devel] [PATCH 03/11] ffserver_config: map ffserver options to AVOptions

2014-11-26 Thread Reynaldo H. Verdejo Pinochet
Hi On 11/21/2014 09:16 PM, Lukasz Marek wrote: [...] @@ -497,6 +500,14 @@ static int ffserver_save_avoption(const char *opt, const char *arg, int type, FF return 0; } +static int ffserver_save_avoption_int(const char *opt, int64_t arg, + int

Re: [FFmpeg-devel] [PATCH 04/11] ffserver_config: remove ffserver_apply_stream_config function

2014-11-26 Thread Reynaldo H. Verdejo Pinochet
Hi. LGTM, feel free to push please. -- Reynaldo H. Verdejo Pinochet Open Source Group Samsung Research America / Silicon Valley ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 06/11] [WIP][RFC]tools: add ffserver_config_test

2014-11-26 Thread Reynaldo H. Verdejo Pinochet
Hi Lukasz. Are you sending an updated patch for this one or I missed it somehow? -- Reynaldo H. Verdejo Pinochet Open Source Group Samsung Research America / Silicon Valley ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org

Re: [FFmpeg-devel] [PATCH 06/11] [WIP][RFC]tools: add ffserver_config_test

2014-11-26 Thread Lukasz Marek
On 26.11.2014 23:27, Reynaldo H. Verdejo Pinochet wrote: Hi Lukasz. Are you sending an updated patch for this one or I missed it somehow? maybe I should avoid commenting patches in other threads, but I removed this for now. I will repost it when it is finished. I submitted it just to present

Re: [FFmpeg-devel] [PATCH 06/11] [WIP][RFC]tools: add ffserver_config_test

2014-11-26 Thread Reynaldo H. Verdejo Pinochet
Hi On 11/26/2014 07:35 PM, Lukasz Marek wrote: [..] maybe I should avoid commenting patches in other threads, but I removed Yeah ;) this for now. I will repost it when it is finished. [..] All good then. Please CC me when you do to make sure I don't miss it. Thanks a lot! Bests, --

[FFmpeg-devel] [PATCH] avformat/hlsenc: added HLS encryption

2014-11-26 Thread Christian Suloway
Signed-off-by: Christian Suloway csulo...@globaleagleent.com --- libavformat/crypto.c | 233 --- libavformat/hlsenc.c | 387 ++- 2 files changed, 567 insertions(+), 53 deletions(-) diff --git a/libavformat/crypto.c

Re: [FFmpeg-devel] [PATCH 08/11] ffserver: export recommented encoder configuration

2014-11-26 Thread Lukasz Marek
On 26.11.2014 16:21, Reynaldo H. Verdejo Pinochet wrote: Hi Lukasz. Sorry for the delay. Patch looks good. Feel free to push. Pushed whole patchset until this one inclusive. Skipped [PATCH 06/11] [WIP][RFC]tools: add ffserver_config_test The rest is not commented/approved. I will resend it

Re: [FFmpeg-devel] [PATCH 1/2] lavc/options: fix leaks in avcodec_free_context

2014-11-26 Thread Lukasz Marek
On 24.11.2014 21:40, Michael Niedermayer wrote: On Mon, Nov 24, 2014 at 05:16:49AM +0100, Lukasz Marek wrote: Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- libavcodec/options.c | 3 +++ 1 file changed, 3 insertions(+) LGTM pushed this one

Re: [FFmpeg-devel] [PATCH 2/2] ffserver: dont leak pb_buffer

2014-11-26 Thread Lukasz Marek
On 26.11.2014 16:18, Reynaldo H. Verdejo Pinochet wrote: Feel free to push please. Pushed both ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 03/11] ffserver_config: map ffserver options to AVOptions

2014-11-26 Thread Lukasz Marek
On 26.11.2014 23:22, Reynaldo H. Verdejo Pinochet wrote: Hi On 11/21/2014 09:16 PM, Lukasz Marek wrote: [...] @@ -497,6 +500,14 @@ static int ffserver_save_avoption(const char *opt, const char *arg, int type, FF return 0; } +static int ffserver_save_avoption_int(const char *opt,

[FFmpeg-devel] [PATCH 1/3] lavf/ffmdec: add common options to recommended encoder configuration

2014-11-26 Thread Lukasz Marek
Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- libavformat/ffmdec.c | 36 +++- 1 file changed, 31 insertions(+), 5 deletions(-) diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c index 7ae906b..987f419 100644 --- a/libavformat/ffmdec.c +++

[FFmpeg-devel] [PATCH 2/3] lavf/ffmenc: store recommended encoder configuration

2014-11-26 Thread Lukasz Marek
ffmenc will store recommended encoder configuration if present. This will allow the user to base on local defaults and apply only explicitly set options. If recommended encoder configuration is not present, then non-default context's options are stored. Signed-off-by: Lukasz Marek

[FFmpeg-devel] [PATCH 3/3] ffmpeg_opt: make use of recommended encoder configuration

2014-11-26 Thread Lukasz Marek
So far ffmpeg used recommended configuration only for codec priv options. ffmpeg will use now codec defaults and then apply recommended configuration for all options. Recommended configuration possibly contains minimal set of options to filful user configuration. Signed-off-by: Lukasz Marek

Re: [FFmpeg-devel] [PATCH 03/11] ffserver_config: map ffserver options to AVOptions

2014-11-26 Thread Reynaldo H. Verdejo Pinochet
On 11/26/2014 07:52 PM, Lukasz Marek wrote: [..] In fact 20 is too small. INT64_MIN has 19 digits, '-' sign and terminating 0. So 21 is a minimum. I put 22, the same as av_dict_set_int. True, forgot about the sign. Go ahead after fixing please. Thanks, -- Reynaldo H. Verdejo Pinochet

Re: [FFmpeg-devel] [PATCH 1/3] lavf/ffmdec: add common options to recommended encoder configuration

2014-11-26 Thread Michael Niedermayer
On Wed, Nov 26, 2014 at 11:53:40PM +0100, Lukasz Marek wrote: Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- libavformat/ffmdec.c | 36 +++- 1 file changed, 31 insertions(+), 5 deletions(-) should be ok [...] -- Michael GnuPG fingerprint:

Re: [FFmpeg-devel] [PATCH] avformat/mov: strengthen some table allocations

2014-11-26 Thread Michael Niedermayer
On Wed, Nov 26, 2014 at 10:48:10PM +0100, Clément Bœsch wrote: From: Clément Bœsch clem...@stupeflix.com --- libavformat/mov.c | 48 +++- 1 file changed, 27 insertions(+), 21 deletions(-) LGTM thanks [...] -- Michael GnuPG fingerprint:

Re: [FFmpeg-devel] [PATCH] lavu/opt: add const to av_opt_copy arg

2014-11-26 Thread Lukasz Marek
On 24.11.2014 02:06, Michael Niedermayer wrote: On Sun, Nov 23, 2014 at 10:25:39PM +0100, Lukasz Marek wrote: On 23.11.2014 02:29, Michael Niedermayer wrote: On Sun, Nov 23, 2014 at 01:01:19AM +0100, Lukasz Marek wrote: On 23.11.2014 00:58, Lukasz Marek wrote: Signed-off-by: Lukasz Marek

Re: [FFmpeg-devel] [PATCH 2/2] lavc/options: fix leaks in avcodec_copy_context

2014-11-26 Thread Lukasz Marek
On 24.11.2014 05:16, Lukasz Marek wrote: Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- libavcodec/options.c | 23 +++ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/libavcodec/options.c b/libavcodec/options.c index 7f9fb07..8ba997c 100644 ---

[FFmpeg-devel] [PATCH 3/3] ffserver_config: print warning when using default value

2014-11-26 Thread Lukasz Marek
Some of the defaults may be harmful (like buffer size). It is good user is aware of that. Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- ffserver_config.c | 38 +++--- 1 file changed, 35 insertions(+), 3 deletions(-) diff --git a/ffserver_config.c

[FFmpeg-devel] [PATCH 1/3] ffserver_config: remove useless defaults

2014-11-26 Thread Lukasz Marek
Options are already set to its defaults by AVOption API. The only difference is for qmin, new default is 2, ffserver set to 3. It is dead code because if condition is not meet unless user set option to 0. Meeting condition would mean that ffserver overwrites explicity set option. Signed-off-by:

[FFmpeg-devel] [PATCH 2/3] ffserver_config: set defaults basing on absence of set value

2014-11-26 Thread Lukasz Marek
This prevents the situation when user set option to 0 and ffserver threats it as not set value, so applies the default. Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- ffserver_config.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git

Re: [FFmpeg-devel] [PATCH 2/3] lavf/ffmenc: store recommended encoder configuration

2014-11-26 Thread Michael Niedermayer
On Wed, Nov 26, 2014 at 11:53:41PM +0100, Lukasz Marek wrote: ffmenc will store recommended encoder configuration if present. This will allow the user to base on local defaults and apply only explicitly set options. If recommended encoder configuration is not present, then non-default

Re: [FFmpeg-devel] [PATCH 3/3] ffmpeg_opt: make use of recommended encoder configuration

2014-11-26 Thread Michael Niedermayer
On Wed, Nov 26, 2014 at 11:53:42PM +0100, Lukasz Marek wrote: So far ffmpeg used recommended configuration only for codec priv options. ffmpeg will use now codec defaults and then apply recommended configuration for all options. Recommended configuration possibly contains minimal set of

Re: [FFmpeg-devel] [PATCH] lavu/opt: add const to av_opt_copy arg

2014-11-26 Thread Michael Niedermayer
On Thu, Nov 27, 2014 at 12:37:38AM +0100, Lukasz Marek wrote: On 24.11.2014 02:06, Michael Niedermayer wrote: On Sun, Nov 23, 2014 at 10:25:39PM +0100, Lukasz Marek wrote: On 23.11.2014 02:29, Michael Niedermayer wrote: On Sun, Nov 23, 2014 at 01:01:19AM +0100, Lukasz Marek wrote: On

Re: [FFmpeg-devel] [PATCH 2/2] lavc/options: fix leaks in avcodec_copy_context

2014-11-26 Thread Michael Niedermayer
On Thu, Nov 27, 2014 at 12:43:57AM +0100, Lukasz Marek wrote: On 24.11.2014 05:16, Lukasz Marek wrote: Signed-off-by: Lukasz Marek lukasz.m.lu...@gmail.com --- libavcodec/options.c | 23 +++ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git

[FFmpeg-devel] [Patch 1/5]Fix h264 on POWER LE: libavutil/ppc/util_altivec.h

2014-11-26 Thread rongyan
Hi, We present 5 patches to fix h264 bugs for POWER8 little endian, which are sent in 5 seperate emails. This is the first, to add marcos vcswapi2s(), vcswapc(), VEC_LD2(), VEC_SPLAT16(), and VEC_SLD16(). The fate test result after merge these 5 patches can be found on website by searching

[FFmpeg-devel] [Patch 2/5]Fix h264 on POWER LE: libavcodec/ppc/h264dsp.c

2014-11-26 Thread rongyan
Hi, We present 5 patches to fix h264 bugs for POWER8 little endian, which are sent in 5 seperate emails. This is the second, to fix the functions h264_idct8_add_altivec(); h264_idct_dc_add_internal(); h264_loop_filter_luma_altivec(); write16x4() VEC_1D_DCT(); weight_h264_W_altivec();

[FFmpeg-devel] [Patch 3/5]Fix h264 on POWER LE: libavcodec/ppc/h264chroma_template.c

2014-11-26 Thread rongyan
Hi, We present 5 patches to fix h264 bugs for POWER8 little endian, which are sent in 5 seperate emails. This is the third, to fix the functions PREFIX_h264_chroma_mc8_altivec(), PREFIX_no_rnd_vc1_chroma_mc8_altivec(), CHROMA_MC8_ALTIVEC_CORE_SIMPLE(), CHROMA_MC8_ALTIVEC_CORE(), add marcos

[FFmpeg-devel] [Patch 5/5]Fix h264 on POWER LE: libavcodec/ppc/h264qpel.c

2014-11-26 Thread rongyan
Hi, We present 5 patches to fix h264 bugs for POWER8 little endian, which are sent in 5 seperate emails. This is the fifth, to fix the functions put_pixels16_l2_altivec(), avg_pixels16_l2_altivec(), add marcos put_unligned_store(), avg_unligned_store(). The fate test result after merge these 5

[FFmpeg-devel] [Patch 4/5]Fix h264 on POWER LE: libavcodec/ppc/h264qpel_template.c

2014-11-26 Thread rongyan
Hi, We present 5 patches to fix h264 bugs for POWER8 little endian, which are sent in 5 seperate emails. This is the first, to fix functions PREFIX_h264_qpel16_h_lowpass_altivec(), PREFIX_h264_qpel16_v_lowpass_altivec(), PREFIX_h264_qpel16_hv_lowpass_altivec(), add marcos load_alignment(). The