| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # | 2 # |
| 3 # automatic regression test for ffmpeg | 3 # automatic regression test for ffmpeg |
| 4 # | 4 # |
| 5 # | 5 # |
| 6 #set -x | 6 #set -x |
| 7 | 7 |
| 8 set -e | 8 set -e |
| 9 | 9 |
| 10 . $(dirname $0)/regression-funcs.sh | 10 . $(dirname $0)/regression-funcs.sh |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 if [ -n "$do_flashsv" ] ; then | 241 if [ -n "$do_flashsv" ] ; then |
| 242 do_video_encoding flashsv.flv "" "-an -vcodec flashsv -sws_flags neighbor+full_c
hroma_int+accurate_rnd+bitexact" | 242 do_video_encoding flashsv.flv "" "-an -vcodec flashsv -sws_flags neighbor+full_c
hroma_int+accurate_rnd+bitexact" |
| 243 do_video_decoding "" "-pix_fmt yuv420p -sws_flags area+accurate_rnd+bitexact" | 243 do_video_decoding "" "-pix_fmt yuv420p -sws_flags area+accurate_rnd+bitexact" |
| 244 fi | 244 fi |
| 245 | 245 |
| 246 if [ -n "$do_roq" ] ; then | 246 if [ -n "$do_roq" ] ; then |
| 247 do_video_encoding roqav.roq "" "-vframes 5" | 247 do_video_encoding roqav.roq "" "-vframes 5" |
| 248 do_video_decoding "" "-pix_fmt yuv420p" | 248 do_video_decoding "" "-pix_fmt yuv420p" |
| 249 fi | 249 fi |
| 250 | 250 |
| 251 if [ -n "$do_qtrle" ] ; then |
| 252 do_video_encoding qtrle.mov "" "" |
| 253 do_video_decoding "" "" |
| 254 fi |
| 255 |
| 251 if [ -n "$do_rgb" ] ; then | 256 if [ -n "$do_rgb" ] ; then |
| 252 do_video_encoding rgb.avi "" "-an -vcodec rawvideo -pix_fmt bgr24" | 257 do_video_encoding rgb.avi "" "-an -vcodec rawvideo -pix_fmt bgr24" |
| 253 do_video_decoding "" "-pix_fmt yuv420p" | 258 do_video_decoding "" "-pix_fmt yuv420p" |
| 254 fi | 259 fi |
| 255 | 260 |
| 256 if [ -n "$do_yuv" ] ; then | 261 if [ -n "$do_yuv" ] ; then |
| 257 do_video_encoding yuv.avi "" "-an -vcodec rawvideo -pix_fmt yuv420p" | 262 do_video_encoding yuv.avi "" "-an -vcodec rawvideo -pix_fmt yuv420p" |
| 258 do_video_decoding "" "-pix_fmt yuv420p" | 263 do_video_decoding "" "-pix_fmt yuv420p" |
| 259 fi | 264 fi |
| 260 | 265 |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 do_audio_enc_dec wav s32 pcm_s32le | 356 do_audio_enc_dec wav s32 pcm_s32le |
| 352 #do_audio_enc_dec ??? s32 pcm_u32be #no compatible muxer or demuxer | 357 #do_audio_enc_dec ??? s32 pcm_u32be #no compatible muxer or demuxer |
| 353 #do_audio_enc_dec ??? s32 pcm_u32le #no compatible muxer or demuxer | 358 #do_audio_enc_dec ??? s32 pcm_u32le #no compatible muxer or demuxer |
| 354 do_audio_enc_dec au flt pcm_f32be | 359 do_audio_enc_dec au flt pcm_f32be |
| 355 do_audio_enc_dec wav flt pcm_f32le | 360 do_audio_enc_dec wav flt pcm_f32le |
| 356 do_audio_enc_dec au dbl pcm_f64be | 361 do_audio_enc_dec au dbl pcm_f64be |
| 357 do_audio_enc_dec wav dbl pcm_f64le | 362 do_audio_enc_dec wav dbl pcm_f64le |
| 358 do_audio_enc_dec wav s16 pcm_zork | 363 do_audio_enc_dec wav s16 pcm_zork |
| 359 do_audio_enc_dec 302 s16 pcm_s24daud "-ac 6 -ar 96000" | 364 do_audio_enc_dec 302 s16 pcm_s24daud "-ac 6 -ar 96000" |
| 360 fi | 365 fi |
| OLD | NEW |