1#!/bin/sh
2#
3# automatic regression test for libavformat
4#
5#
6#set -x
7
8set -e
9
10. $(dirname $0)/regression-funcs.sh
11
12eval do_$test=y
13
14do_lavf()
15{
16    file=${outfile}lavf.$1
17    do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -f s16le -i $pcm_src $2
18    do_ffmpeg_crc $file -i $target_path/$file $3
19}
20
21do_streamed_images()
22{
23    file=${outfile}${1}pipe.$1
24    do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -f image2pipe
25    do_ffmpeg_crc $file -f image2pipe -i $target_path/$file
26}
27
28do_image_formats()
29{
30    outfile="$datadir/images/$1/"
31    mkdir -p "$outfile"
32    file=${outfile}%02d.$1
33    $echov $ffmpeg -t 0.5 -y -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src $2 $3 -flags +bitexact -sws_flags +accurate_rnd+bitexact $target_path/$file
34    $ffmpeg -t 0.5 -y -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src $2 $3 -flags +bitexact -sws_flags +accurate_rnd+bitexact $target_path/$file
35    do_md5sum ${outfile}02.$1 >> $logfile
36    do_ffmpeg_crc $file $3 -i $target_path/$file
37    wc -c ${outfile}02.$1 >> $logfile
38}
39
40do_audio_only()
41{
42    file=${outfile}lavf.$1
43    do_ffmpeg $file -t 1 -qscale 10 -f s16le -i $pcm_src
44    do_ffmpeg_crc $file -i $target_path/$file
45}
46
47rm -f "$logfile"
48rm -f "$benchfile"
49
50if [ -n "$do_avi" ] ; then
51do_lavf avi
52fi
53
54if [ -n "$do_asf" ] ; then
55do_lavf asf "-acodec mp2" "-r 25"
56fi
57
58if [ -n "$do_rm" ] ; then
59file=${outfile}lavf.rm
60do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -f s16le -i $pcm_src
61# broken
62#do_ffmpeg_crc $file -i $target_path/$file
63fi
64
65if [ -n "$do_mpg" ] ; then
66do_lavf mpg
67fi
68
69if [ -n "$do_mxf" ] ; then
70do_lavf mxf "-ar 48000 -bf 2 -timecode_frame_start 264363"
71do_lavf mxf_d10 "-ar 48000 -ac 2 -r 25 -s 720x576 -padtop 32 -vcodec mpeg2video -intra -flags +ildct+low_delay -dc 10 -flags2 +ivlc+non_linear_q -qscale 1 -ps 1 -qmin 1 -rc_max_vbv_use 1 -rc_min_vbv_use 1 -pix_fmt yuv422p -minrate 30000k -maxrate 30000k -b 30000k -bufsize 1200000 -top 1 -rc_init_occupancy 1200000 -qmax 12 -f mxf_d10"
72fi
73
74if [ -n "$do_ts" ] ; then
75do_lavf ts
76fi
77
78if [ -n "$do_swf" ] ; then
79do_lavf swf -an
80fi
81
82if [ -n "$do_ffm" ] ; then
83do_lavf ffm
84fi
85
86if [ -n "$do_flv_fmt" ] ; then
87do_lavf flv -an
88fi
89
90if [ -n "$do_mov" ] ; then
91do_lavf mov "-acodec pcm_alaw"
92fi
93
94if [ -n "$do_dv_fmt" ] ; then
95do_lavf dv "-ar 48000 -r 25 -s pal -ac 2"
96fi
97
98if [ -n "$do_gxf" ] ; then
99do_lavf gxf "-ar 48000 -r 25 -s pal -ac 1"
100fi
101
102if [ -n "$do_nut" ] ; then
103do_lavf nut "-acodec mp2"
104fi
105
106if [ -n "$do_mkv" ] ; then
107do_lavf mkv
108fi
109
110
111# streamed images
112# mjpeg
113#file=${outfile}lavf.mjpeg
114#do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src
115#do_ffmpeg_crc $file -i $target_path/$file
116
117if [ -n "$do_pbmpipe" ] ; then
118do_streamed_images pbm
119fi
120
121if [ -n "$do_pgmpipe" ] ; then
122do_streamed_images pgm
123fi
124
125if [ -n "$do_ppmpipe" ] ; then
126do_streamed_images ppm
127fi
128
129if [ -n "$do_gif" ] ; then
130file=${outfile}lavf.gif
131do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src -pix_fmt rgb24
132#do_ffmpeg_crc $file -i $target_path/$file
133fi
134
135if [ -n "$do_yuv4mpeg" ] ; then
136file=${outfile}lavf.y4m
137do_ffmpeg $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src
138#do_ffmpeg_crc $file -i $target_path/$file
139fi
140
141# image formats
142
143if [ -n "$do_pgm" ] ; then
144do_image_formats pgm
145fi
146
147if [ -n "$do_ppm" ] ; then
148do_image_formats ppm
149fi
150
151if [ -n "$do_bmp" ] ; then
152do_image_formats bmp
153fi
154
155if [ -n "$do_tga" ] ; then
156do_image_formats tga
157fi
158
159if [ -n "$do_tiff" ] ; then
160do_image_formats tiff "-pix_fmt rgb24"
161fi
162
163if [ -n "$do_sgi" ] ; then
164do_image_formats sgi
165fi
166
167if [ -n "$do_jpg" ] ; then
168do_image_formats jpg "-flags +bitexact -dct fastint -idct simple -pix_fmt yuvj420p" "-f image2"
169fi
170
171if [ -n "$do_pcx" ] ; then
172do_image_formats pcx
173fi
174
175# audio only
176
177if [ -n "$do_wav" ] ; then
178do_audio_only wav
179fi
180
181if [ -n "$do_alaw" ] ; then
182do_audio_only al
183fi
184
185if [ -n "$do_mulaw" ] ; then
186do_audio_only ul
187fi
188
189if [ -n "$do_au" ] ; then
190do_audio_only au
191fi
192
193if [ -n "$do_mmf" ] ; then
194do_audio_only mmf
195fi
196
197if [ -n "$do_aiff" ] ; then
198do_audio_only aif
199fi
200
201if [ -n "$do_voc" ] ; then
202do_audio_only voc
203fi
204
205if [ -n "$do_ogg" ] ; then
206do_audio_only ogg
207fi
208
209# pix_fmt conversions
210
211if [ -n "$do_pixfmt" ] ; then
212outfile="$datadir/pixfmt/"
213mkdir -p "$outfile"
214conversions="yuv420p yuv422p yuv444p yuyv422 yuv410p yuv411p yuvj420p \
215             yuvj422p yuvj444p rgb24 bgr24 rgb32 rgb565 rgb555 gray monow \
216             monob yuv440p yuvj440p"
217for pix_fmt in $conversions ; do
218    file=${outfile}${pix_fmt}.yuv
219    do_ffmpeg_nocheck $file -r 1 -t 1 -f image2 -vcodec pgmyuv -i $raw_src \
220                            -f rawvideo -s 352x288 -pix_fmt $pix_fmt $target_path/$raw_dst
221    do_ffmpeg $file -f rawvideo -s 352x288 -pix_fmt $pix_fmt -i $target_path/$raw_dst \
222                    -f rawvideo -s 352x288 -pix_fmt yuv444p
223done
224fi
225
226rm -f "$bench" "$bench2"
227