1. 09 Jul, 2011 3 commits
    • Rémi Duraffort's avatar
      Taglib: support for wma/ape and improve mp4 support · 898d2349
      Rémi Duraffort authored
      Notably for Cover Art support
      
      (cherry picked from commit c21bb29ae63d827b24396a5fd0d024768709dd85)
      (cherry picked from commit 277eb4cfbc9c7b37752b781029899177caade0dd)
      (cherry picked from commit c405205e9a82ad0b1b63556f718580ef8ccd0205)
      (cherry picked from commit 01cf70073fb52a2a8a7e504eaa2fe8a22c9e382b)
      (cherry picked from commit b4b357ee09e5a99373b99d5c609bf832f484f748)
      (cherry picked from commit 599eee103d3b6d597b8e5a4f3c9cd86df931e7cf)
      (cherry picked from commit d158270ed7e2a3c1aea9fa137e65a42600e94f44)
      (cherry picked from commit 57333f5920db4a41a2d9a7965bb4d7a1df7e61c2)
      (cherry picked from commit 449b78e85a7867e38dc1fafe1b10f8339faea418)
      (cherry picked from commit 7bdcc742148598bb17ebfb2eaeb4eeb378d13d81)
      (cherry picked from commit 10ca2d59677fc9e6d551f420fe87887b050f354a)
      (cherry picked from commit 4bdaae499b63956393104639300747fc25de28af)
      Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
      898d2349
    • Hugo Beauzée-Luyssen's avatar
      lua: Propagate meta_changed events. · 436d36cc
      Hugo Beauzée-Luyssen authored
      Fixes #5026
      Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
      (cherry picked from commit 006127ff5a7121e3faebf0d947f570713718ea9c)
      Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
      436d36cc
    • Alexey Sokolov's avatar
      Fix doxygen for libvlc_audio_output_set · 7045ed74
      Alexey Sokolov authored
      Tests show that current docs are wrong.
      Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
      (cherry picked from commit fd4a0ddc54b4571272e68d29c9ad733b9544d811)
      7045ed74
  2. 08 Jul, 2011 4 commits
  3. 07 Jul, 2011 3 commits
  4. 06 Jul, 2011 1 commit
  5. 05 Jul, 2011 2 commits
  6. 04 Jul, 2011 1 commit
  7. 03 Jul, 2011 1 commit
  8. 27 Jun, 2011 3 commits
    • Jean-Baptiste Kempf's avatar
      Qt4: add the browsed folder to the device combo · 15f4f967
      Jean-Baptiste Kempf authored
      (cherry picked from commit af6a6b2b5b918b55e93083889f72cf970770e82d)
      Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
      15f4f967
    • Ashok Bhat's avatar
      Fixed bugs in AVI mux module · b0c5a17d
      Ashok Bhat authored
      Closes #21 (partly, at least), #4288 and #4304
      
      Description
      ===================
      Fixed bugs in AVI mux to support creation of AVI files with following popular video/audio combinations
      (a) MPEG4 video (aka XVID) with MP3/AC3/PCM Audio
      (b) MJPEG video with PCM audio.
      AVI as such is not used for storing other formats like H.264, AAC etc
      
      Bug fix details
      ===================
      (a) 'hdrl' list size was wrong. It incorrectly included some parts of MOVI list, size taken by hdrl LIST tag and its size and Size of 'RIFF', File size and 'AVI ' type.
      (b) Block Align was set to 0 in case of MP3/AC3. It has to be non-zero. It has to been set to 1.
      (c) XVID video decoders expect header to present as part of first frame. Added code to append header present at end of BITMAPINFOHEADER to beginning of the first video frame in case of XVID video.
      (d) nAvgBytesPerSec of Waveformatex was not properly being set in case of PCM audio.
      (e) Last index entry value was set to garbage due to incorrect index size calculation.
      
      Test PC configuration
      ===================
      Tested with Windows Media Player 11 installed on Windows XP Service pack 3 machine with following directshow filters installed
      (a) XVID MPEG4 video decoder filter for MPEG4 video decoding
      (b) LAME MP3 codec for MP3 audio decoding
      
      Combinations tested
      ====================
      (a) MPEG4/MP3 transcode
      vlc -I dummy "Mr_MrsSmith-h264_aac.mp4" :sout="#transcode{vcodec=mp4v,vb=1024,fps=25,acodec=mpga,ab=128}:standard{mux=avi,access=file,dst=out.avi}" vlc://quit
      
      (b) MPEG4/AC3 transcode
      vlc -I dummy "Mr_MrsSmith-h264_aac.mp4" :sout="#transcode{vcodec=mp4v,vb=1024,fps=25,acodec=a52, ab=128}:standard{mux=avi,access=file,dst=out.avi}" vlc://quit
      
      (c) MPEG4/PCM(16bit) transcode
      vlc -I dummy "Mr_MrsSmith-h264_aac.mp4" :sout="#transcode{vcodec=mp4v,vb=1024,fps=25,acodec=s16l}:standard{mux=avi,access=file,dst=out.avi}" vlc://quit
      
      (d) MPEG4/PCM(24 bit) transcode
      vlc -I dummy "Mr_MrsSmith-h264_aac.mp4" :sout="#transcode{vcodec=mp4v,vb=1024,fps=25,acodec=s24l}:standard{mux=avi,access=file,dst=out.avi}" vlc://quit
      
      (e) MPEG4/PCM(32bit) transcode
      vlc -I dummy "Mr_MrsSmith-h264_aac.mp4" :sout="#transcode{vcodec=mp4v,vb=1024,fps=25,acodec=s32l}:standard{mux=avi,access=file,dst=out.avi}" vlc://quit
      
      (f) MJPEG/PCM(32bit) transcode
      vlc -I dummy "Mr_MrsSmith-h264_aac.mp4" :sout="#transcode{vcodec=mjpeg,vb=1024,fps=25,acodec=s32l}:standard{mux=avi,access=file,dst=out.avi}" vlc://quitSigned-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
      (cherry picked from commit 1e6d1f3cb3d0ee4b36a939b17eb3a1de2131d34d)
      Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
      b0c5a17d
    • Rémi Denis-Courmont's avatar
      Mark srtp-key and srtp-salt safe · 219806e4
      Rémi Denis-Courmont authored
      (cherry picked from commit 73cadb239d790835d81a83e53069fbe768a2d260)
      Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
      219806e4
  9. 22 Jun, 2011 1 commit
  10. 21 Jun, 2011 2 commits
  11. 20 Jun, 2011 4 commits
  12. 18 Jun, 2011 7 commits
  13. 16 Jun, 2011 4 commits
  14. 13 Jun, 2011 1 commit
  15. 12 Jun, 2011 1 commit
  16. 11 Jun, 2011 2 commits