You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

252 lines
5.4KB

  1. #!/bin/sh
  2. #
  3. # automatic regression test for libavformat
  4. #
  5. #
  6. #set -x
  7. set -e
  8. . $(dirname $0)/regression-funcs.sh
  9. eval do_$test=y
  10. do_lavf()
  11. {
  12. file=${outfile}lavf.$1
  13. do_avconv $file $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src $DEC_OPTS -ar 44100 -f s16le $2 -i $pcm_src $ENC_OPTS -b:a 64k -t 1 -qscale:v 10 $3
  14. do_avconv_crc $file $DEC_OPTS -i $target_path/$file $4
  15. }
  16. do_streamed_images()
  17. {
  18. file=${outfile}${1}pipe.$1
  19. do_avconv $file $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src -f image2pipe $ENC_OPTS -t 1 -qscale 10
  20. do_avconv_crc $file $DEC_OPTS -f image2pipe -i $target_path/$file
  21. }
  22. do_image_formats()
  23. {
  24. outfile="$datadir/images/$1/"
  25. mkdir -p "$outfile"
  26. file=${outfile}%02d.$1
  27. run_avconv $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src $2 $ENC_OPTS $3 -frames 12 -y -qscale 10 $target_path/$file
  28. do_md5sum ${outfile}02.$1
  29. do_avconv_crc $file $DEC_OPTS $3 -i $target_path/$file
  30. echo $(wc -c ${outfile}02.$1)
  31. }
  32. do_audio_only()
  33. {
  34. file=${outfile}lavf.$1
  35. do_avconv $file $DEC_OPTS $2 -ar 44100 -f s16le -i $pcm_src $ENC_OPTS -t 1 -qscale 10 $3
  36. do_avconv_crc $file $DEC_OPTS $4 -i $target_path/$file
  37. }
  38. if [ -n "$do_avi" ] ; then
  39. do_lavf avi "" "-c:a mp2 -ar 44100"
  40. fi
  41. if [ -n "$do_asf" ] ; then
  42. do_lavf asf "" "-c:a mp2 -ar 44100" "-r 25"
  43. fi
  44. if [ -n "$do_rm" ] ; then
  45. file=${outfile}lavf.rm
  46. do_avconv $file $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src $DEC_OPTS -ar 44100 -f s16le -i $pcm_src $ENC_OPTS -t 1 -qscale 10 -c:a ac3_fixed -b:a 64k
  47. # broken
  48. #do_avconv_crc $file -i $target_path/$file
  49. fi
  50. if [ -n "$do_mpg" ] ; then
  51. do_lavf mpg "" "-ar 44100"
  52. fi
  53. if [ -n "$do_mxf" ] ; then
  54. do_lavf mxf "-ar 48000" "-bf 2 -timecode_frame_start 264363"
  55. fi
  56. if [ -n "$do_mxf_d10" ]; then
  57. do_lavf mxf_d10 "-ar 48000 -ac 2" "-r 25 -vf scale=720:576,pad=720:608:0:32 -c:v mpeg2video -g 0 -flags +ildct+low_delay -dc 10 -non_linear_quant 1 -intra_vlc 1 -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"
  58. fi
  59. if [ -n "$do_ts" ] ; then
  60. do_lavf ts "" "-mpegts_transport_stream_id 42 -ar 44100"
  61. fi
  62. if [ -n "$do_swf" ] ; then
  63. do_lavf swf "" "-an"
  64. fi
  65. if [ -n "$do_flv_fmt" ] ; then
  66. do_lavf flv "" "-an"
  67. fi
  68. if [ -n "$do_mov" ] ; then
  69. do_lavf mov "" "-c:a pcm_alaw -c:v mpeg4"
  70. fi
  71. if [ -n "$do_dv_fmt" ] ; then
  72. do_lavf dv "-ar 48000 -channel_layout stereo" "-r 25 -s pal"
  73. fi
  74. if [ -n "$do_gxf" ] ; then
  75. do_lavf gxf "-ar 48000" "-r 25 -s pal -ac 1"
  76. fi
  77. if [ -n "$do_nut" ] ; then
  78. do_lavf nut "" "-c:a mp2 -ar 44100"
  79. fi
  80. if [ -n "$do_mkv" ] ; then
  81. do_lavf mkv "" "-c:a mp2 -c:v mpeg4 -ar 44100"
  82. fi
  83. # streamed images
  84. # mjpeg
  85. #file=${outfile}lavf.mjpeg
  86. #do_avconv $file -t 1 -qscale 10 -f image2 -c:v pgmyuv -i $raw_src
  87. #do_avconv_crc $file -i $target_path/$file
  88. if [ -n "$do_pbmpipe" ] ; then
  89. do_streamed_images pbm
  90. fi
  91. if [ -n "$do_pgmpipe" ] ; then
  92. do_streamed_images pgm
  93. fi
  94. if [ -n "$do_ppmpipe" ] ; then
  95. do_streamed_images ppm
  96. fi
  97. if [ -n "$do_gif" ] ; then
  98. file=${outfile}lavf.gif
  99. do_avconv $file $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src $ENC_OPTS -t 1 -qscale 10 -pix_fmt rgb24
  100. do_avconv_crc $file $DEC_OPTS -i $target_path/$file -pix_fmt rgb24
  101. fi
  102. if [ -n "$do_yuv4mpeg" ] ; then
  103. file=${outfile}lavf.y4m
  104. do_avconv $file $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src $ENC_OPTS -t 1 -qscale 10
  105. #do_avconv_crc $file -i $target_path/$file
  106. fi
  107. # image formats
  108. if [ -n "$do_pgm" ] ; then
  109. do_image_formats pgm
  110. fi
  111. if [ -n "$do_ppm" ] ; then
  112. do_image_formats ppm
  113. fi
  114. if [ -n "$do_png" ] ; then
  115. do_image_formats png
  116. fi
  117. if [ -n "$do_bmp" ] ; then
  118. do_image_formats bmp
  119. fi
  120. if [ -n "$do_tga" ] ; then
  121. do_image_formats tga
  122. fi
  123. if [ -n "$do_tiff" ] ; then
  124. do_image_formats tiff "-pix_fmt rgb24"
  125. fi
  126. if [ -n "$do_sgi" ] ; then
  127. do_image_formats sgi
  128. fi
  129. if [ -n "$do_jpg" ] ; then
  130. do_image_formats jpg "-pix_fmt yuvj420p" "-f image2"
  131. fi
  132. if [ -n "$do_pam" ] ; then
  133. do_image_formats pam
  134. fi
  135. if [ -n "$do_pcx" ] ; then
  136. do_image_formats pcx
  137. fi
  138. if [ -n "$do_xwd" ] ; then
  139. do_image_formats xwd
  140. fi
  141. if [ -n "$do_dpx" ] ; then
  142. do_image_formats dpx
  143. fi
  144. if [ -n "$do_sunrast" ] ; then
  145. do_image_formats sun
  146. fi
  147. # audio only
  148. if [ -n "$do_wav" ] ; then
  149. do_audio_only wav
  150. fi
  151. if [ -n "$do_alaw" ] ; then
  152. do_audio_only al "" "" "-ar 44100"
  153. fi
  154. if [ -n "$do_mulaw" ] ; then
  155. do_audio_only ul "" "" "-ar 44100"
  156. fi
  157. if [ -n "$do_au" ] ; then
  158. do_audio_only au
  159. fi
  160. if [ -n "$do_mmf" ] ; then
  161. do_audio_only mmf
  162. fi
  163. if [ -n "$do_aiff" ] ; then
  164. do_audio_only aif
  165. fi
  166. if [ -n "$do_voc" ] ; then
  167. do_audio_only voc
  168. fi
  169. if [ -n "$do_voc_s16" ] ; then
  170. do_audio_only s16.voc "-ac 2" "-c:a pcm_s16le"
  171. fi
  172. if [ -n "$do_ogg" ] ; then
  173. do_audio_only ogg "" "-c:a flac"
  174. fi
  175. if [ -n "$do_rso" ] ; then
  176. do_audio_only rso
  177. fi
  178. if [ -n "$do_sox" ] ; then
  179. do_audio_only sox
  180. fi
  181. # pix_fmt conversions
  182. if [ -n "$do_pixfmt" ] ; then
  183. outfile="$datadir/pixfmt/"
  184. mkdir -p "$outfile"
  185. conversions="yuv420p yuv422p yuv444p yuyv422 yuv410p yuv411p yuvj420p \
  186. yuvj422p yuvj444p rgb24 bgr24 rgb32 rgb565 rgb555 gray monow \
  187. monob yuv440p yuvj440p"
  188. for pix_fmt in $conversions ; do
  189. file=${outfile}${pix_fmt}.yuv
  190. run_avconv $DEC_OPTS -r 1 -f image2 -c:v pgmyuv -i $raw_src \
  191. $ENC_OPTS -f rawvideo -t 1 -s 352x288 -pix_fmt $pix_fmt $target_path/$raw_dst
  192. do_avconv $file $DEC_OPTS -f rawvideo -s 352x288 -pix_fmt $pix_fmt -i $target_path/$raw_dst \
  193. $ENC_OPTS -f rawvideo -s 352x288 -pix_fmt yuv444p
  194. done
  195. fi