On date Monday 2011-05-02 11:57:06 +0200, Luca Barbato wrote:
> On 5/2/11 9:24 AM, Stefano Sabatini wrote:
> 
> >Ping (although huge, the patch only comprises literal changes).
> 
> The patch seems fine, could you provide the sed line used in the commit
> message?

I see it has been already applied, in case you're interested a valid
script is:

#!/bin/sh

for f in *.c; do
    echo "fixing file $f"
    cat $f | sed -e 's/FF_I_TYPE/AV_PICTURE_TYPE_I/g'  |\
             sed -e 's/FF_P_TYPE/AV_PICTURE_TYPE_P/g'  |\
             sed -e 's/FF_B_TYPE/AV_PICTURE_TYPE_B/g'  |\
             sed -e 's/FF_S_TYPE/AV_PICTURE_TYPE_S/g'  |\
             sed -e 's/FF_SI_TYPE/AV_PICTURE_TYPE_SI/g'|\
             sed -e 's/FF_SP_TYPE/AV_PICTURE_TYPE_SP/g'|\
             sed -e 's/FF_BI_TYPE/AV_PICTURE_TYPE_BI/g' > $f.tmp
    mv -f $f.tmp $f
done
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to