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.

250 lines
5.3KB

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