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_avconv $file $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src $DEC_OPTS -ar 44100 -f s16le -i $pcm_src $ENC_OPTS -b:a 64k -t 1 -qscale:v 10 $2
18    do_avconv_crc $file $DEC_OPTS -i $target_path/$file $3
19}
20
21do_streamed_images()
22{
23    file=${outfile}${1}pipe.$1
24    do_avconv $file $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src -f image2pipe $ENC_OPTS -t 1 -qscale 10
25    do_avconv_crc $file $DEC_OPTS -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    run_avconv $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src $2 $ENC_OPTS $3 -t 0.5 -y -qscale 10 $target_path/$file
34    do_md5sum ${outfile}02.$1
35    do_avconv_crc $file $DEC_OPTS $3 -i $target_path/$file
36    wc -c ${outfile}02.$1
37}
38
39do_audio_only()
40{
41    file=${outfile}lavf.$1
42    do_avconv $file $DEC_OPTS $2 -ar 44100 -f s16le -i $pcm_src $ENC_OPTS -t 1 -qscale 10 $3
43    do_avconv_crc $file $DEC_OPTS $4 -i $target_path/$file
44}
45
46if [ -n "$do_avi" ] ; then
47do_lavf avi "-acodec mp2"
48fi
49
50if [ -n "$do_asf" ] ; then
51do_lavf asf "-acodec mp2" "-r 25"
52fi
53
54if [ -n "$do_rm" ] ; then
55file=${outfile}lavf.rm
56do_avconv $file $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src $DEC_OPTS -ar 44100 -f s16le -i $pcm_src $ENC_OPTS -t 1 -qscale 10 -acodec ac3_fixed -b:a 64k
57# broken
58#do_avconv_crc $file -i $target_path/$file
59fi
60
61if [ -n "$do_mpg" ] ; then
62do_lavf mpg
63fi
64
65if [ -n "$do_mxf" ] ; then
66do_lavf mxf "-ar 48000 -bf 2 -timecode_frame_start 264363"
67fi
68
69if [ -n "$do_mxf_d10" ]; then
70do_lavf mxf_d10 "-ar 48000 -ac 2 -r 25 -s 720x576 -vf pad=720:608:0:32 -vcodec mpeg2video -g 0 -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"
71fi
72
73if [ -n "$do_ts" ] ; then
74do_lavf ts "-mpegts_transport_stream_id 42"
75fi
76
77if [ -n "$do_swf" ] ; then
78do_lavf swf -an
79fi
80
81if [ -n "$do_ffm" ] ; then
82do_lavf ffm
83fi
84
85if [ -n "$do_flv_fmt" ] ; then
86do_lavf flv -an
87fi
88
89if [ -n "$do_mov" ] ; then
90do_lavf mov "-acodec pcm_alaw -c:v mpeg4"
91fi
92
93if [ -n "$do_dv_fmt" ] ; then
94do_lavf dv "-ar 48000 -r 25 -s pal -ac 2"
95fi
96
97if [ -n "$do_gxf" ] ; then
98do_lavf gxf "-ar 48000 -r 25 -s pal -ac 1"
99fi
100
101if [ -n "$do_nut" ] ; then
102do_lavf nut "-acodec mp2"
103fi
104
105if [ -n "$do_mkv" ] ; then
106do_lavf mkv "-c:a mp2 -c:v mpeg4"
107fi
108
109
110# streamed images
111# mjpeg
112#file=${outfile}lavf.mjpeg
113#do_avconv $file -t 1 -qscale 10 -f image2 -vcodec pgmyuv -i $raw_src
114#do_avconv_crc $file -i $target_path/$file
115
116if [ -n "$do_pbmpipe" ] ; then
117do_streamed_images pbm
118fi
119
120if [ -n "$do_pgmpipe" ] ; then
121do_streamed_images pgm
122fi
123
124if [ -n "$do_ppmpipe" ] ; then
125do_streamed_images ppm
126fi
127
128if [ -n "$do_gif" ] ; then
129file=${outfile}lavf.gif
130do_avconv $file $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src $ENC_OPTS -t 1 -qscale 10 -pix_fmt rgb24
131do_avconv_crc $file $DEC_OPTS -i $target_path/$file -pix_fmt rgb24
132fi
133
134if [ -n "$do_yuv4mpeg" ] ; then
135file=${outfile}lavf.y4m
136do_avconv $file $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src $ENC_OPTS -t 1 -qscale 10
137#do_avconv_crc $file -i $target_path/$file
138fi
139
140# image formats
141
142if [ -n "$do_pgm" ] ; then
143do_image_formats pgm
144fi
145
146if [ -n "$do_ppm" ] ; then
147do_image_formats ppm
148fi
149
150if [ -n "$do_png" ] ; then
151do_image_formats png
152fi
153
154if [ -n "$do_bmp" ] ; then
155do_image_formats bmp
156fi
157
158if [ -n "$do_tga" ] ; then
159do_image_formats tga
160fi
161
162if [ -n "$do_tiff" ] ; then
163do_image_formats tiff "-pix_fmt rgb24"
164fi
165
166if [ -n "$do_sgi" ] ; then
167do_image_formats sgi
168fi
169
170if [ -n "$do_jpg" ] ; then
171do_image_formats jpg "-pix_fmt yuvj420p" "-f image2"
172fi
173
174if [ -n "$do_pcx" ] ; then
175do_image_formats pcx
176fi
177
178# audio only
179
180if [ -n "$do_wav" ] ; then
181do_audio_only wav
182fi
183
184if [ -n "$do_alaw" ] ; then
185do_audio_only al "" "" "-ar 44100"
186fi
187
188if [ -n "$do_mulaw" ] ; then
189do_audio_only ul "" "" "-ar 44100"
190fi
191
192if [ -n "$do_au" ] ; then
193do_audio_only au
194fi
195
196if [ -n "$do_mmf" ] ; then
197do_audio_only mmf
198fi
199
200if [ -n "$do_aiff" ] ; then
201do_audio_only aif
202fi
203
204if [ -n "$do_voc" ] ; then
205do_audio_only voc
206fi
207
208if [ -n "$do_voc_s16" ] ; then
209do_audio_only s16.voc "-ac 2" "-acodec pcm_s16le"
210fi
211
212if [ -n "$do_ogg" ] ; then
213do_audio_only ogg
214fi
215
216if [ -n "$do_rso" ] ; then
217do_audio_only rso
218fi
219
220# pix_fmt conversions
221
222if [ -n "$do_pixfmt" ] ; then
223outfile="$datadir/pixfmt/"
224mkdir -p "$outfile"
225conversions="yuv420p yuv422p yuv444p yuyv422 yuv410p yuv411p yuvj420p \
226             yuvj422p yuvj444p rgb24 bgr24 rgb32 rgb565 rgb555 gray monow \
227             monob yuv440p yuvj440p"
228for pix_fmt in $conversions ; do
229    file=${outfile}${pix_fmt}.yuv
230    run_avconv $DEC_OPTS -r 1 -f image2 -vcodec pgmyuv -i $raw_src \
231               $ENC_OPTS -f rawvideo -t 1 -s 352x288 -pix_fmt $pix_fmt $target_path/$raw_dst
232    do_avconv $file $DEC_OPTS -f rawvideo -s 352x288 -pix_fmt $pix_fmt -i $target_path/$raw_dst \
233                    $ENC_OPTS -f rawvideo -s 352x288 -pix_fmt yuv444p
234done
235fi
236