1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

- Update to 0.2.38

PR:		77995
Submitted by:	Anish Mistry <amistry@am-productions.biz> (maintainer)
This commit is contained in:
Michael Johnson 2005-03-02 05:45:09 +00:00
parent dc33af974d
commit 8eea478ce0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=130145
3 changed files with 33 additions and 4 deletions

View File

@ -6,11 +6,11 @@
#
PORTNAME= avidemux2
PORTVERSION= 2.0.36
PORTVERSION= 2.0.38
CATEGORIES= multimedia
MASTER_SITES= http://fixounet.free.fr/avidemux/ \
http://download.berlios.de/avidemux/
DISTNAME= avidemux-${PORTVERSION}
DISTNAME= avidemux-${PORTVERSION}rc1
MAINTAINER= amistry@am-productions.biz
COMMENT= Simple GUI based video editor

View File

@ -1,2 +1,2 @@
MD5 (avidemux-2.0.36.tar.gz) = ea394c5020a11919be92c02a992dc41b
SIZE (avidemux-2.0.36.tar.gz) = 3272742
MD5 (avidemux-2.0.38rc1.tar.gz) = 59f0cfff83a7a04bfadaf51fe35fd225
SIZE (avidemux-2.0.38rc1.tar.gz) = 3177994

View File

@ -0,0 +1,29 @@
Index: avidemux/ADM_audio/audio_mpegidentify.cpp
===================================================================
RCS file: /cvsroot/avidemux/avidemux/avidemux/ADM_audio/audio_mpegidentify.cpp,v
retrieving revision 1.4
diff -u -r1.4 audio_mpegidentify.cpp
--- avidemux/ADM_audio/audio_mpegidentify.cpp 19 Feb 2005 16:07:20 -0000 1.4
+++ avidemux/ADM_audio/audio_mpegidentify.cpp 20 Feb 2005 15:35:11 -0000
@@ -33,7 +33,7 @@
#include "fourcc.h"
#include "aviaudio.hxx"
-#include "ADM_audio/ADM_mp3info.h"
+#include "ADM_audio/ADM_mp3info.h"
uint8_t mpegAudioIdentify(uint8_t *ptr, uint32_t maxLookUp, WAVHeader *header, uint8_t *tokens)
@@ -58,9 +58,12 @@
if(info.layer==3) header->encoding=WAV_MP3;
else header->encoding=WAV_MP2;
+ if(tokens)
+ {
tokens[0]=ptr[offset+1];
tokens[1]=ptr[offset+2]&0xfd;
tokens[2]=ptr[offset+3];
+ }
#define DUMPX(x) printf(#x": %d\n",info.x);
DUMPX( level);
DUMPX( layer);