gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] /srv/bzr/gnash/trunk r10366: Tidy up a bit.


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r10366: Tidy up a bit.
Date: Thu, 27 Nov 2008 15:04:25 +0100
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10366
committer: Benjamin Wolsey <address@hidden>
branch nick: trunk
timestamp: Thu 2008-11-27 15:04:25 +0100
message:
  Tidy up a bit.
modified:
  libmedia/MediaHandler.cpp
  libmedia/ffmpeg/AudioDecoderFfmpeg.cpp
  libmedia/ffmpeg/MediaParserFfmpeg.cpp
    ------------------------------------------------------------
    revno: 10362.1.1
    committer: Benjamin Wolsey <address@hidden>
    branch nick: work
    timestamp: Thu 2008-11-27 14:05:09 +0100
    message:
      Split long lines.
    modified:
      libmedia/MediaHandler.cpp
      libmedia/ffmpeg/AudioDecoderFfmpeg.cpp
      libmedia/ffmpeg/MediaParserFfmpeg.cpp
=== modified file 'libmedia/MediaHandler.cpp'
--- a/libmedia/MediaHandler.cpp 2008-10-28 20:01:36 +0000
+++ b/libmedia/MediaHandler.cpp 2008-11-27 13:05:09 +0000
@@ -64,7 +64,8 @@
 
        if ( ! isFLV(*stream) )
        {
-               log_error(_("MediaHandler::createMediaParser: only FLV input is 
supported by this MediaHandler"));
+               log_error(_("MediaHandler::createMediaParser: only FLV input is 
"
+                    "supported by this MediaHandler"));
                return parser;
        }
 

=== modified file 'libmedia/ffmpeg/AudioDecoderFfmpeg.cpp'
--- a/libmedia/ffmpeg/AudioDecoderFfmpeg.cpp    2008-11-01 09:14:51 +0000
+++ b/libmedia/ffmpeg/AudioDecoderFfmpeg.cpp    2008-11-27 13:05:09 +0000
@@ -52,7 +52,8 @@
         log_debug(_("AudioDecoderFfmpeg: initialized FFMPEG codec %d (%s)"),
             _audioCodec->id, _audioCodec->name);
     } else {
-        log_debug(_("AudioDecoderFfmpeg: initialized FFMPEG codec %d (%s) for 
FLASH codec %d (%s)"),
+        log_debug(_("AudioDecoderFfmpeg: initialized FFMPEG codec %d (%s) "
+                    "for FLASH codec %d (%s)"),
             _audioCodec->id, _audioCodec->name,
             info.codec, (audioCodecType)info.codec);
     }
@@ -124,7 +125,8 @@
                // Init the parser
                _parser = av_parser_init(codec_id);
                if (!_parser) { 
-                       throw MediaException(_("AudioDecoderFfmpeg can't 
initialize MP3 parser"));
+        throw MediaException(_("AudioDecoderFfmpeg can't initialize "
+                    "MP3 parser"));
                }
     }
 
@@ -212,8 +214,9 @@
 
                        default:
                            boost::format err = boost::format(
-                               _("AudioDecoderFfmpeg: unsupported FLASH audio 
codec %d (%s)")) %
-                               info.codec % (audioCodecType)info.codec;
+                               _("AudioDecoderFfmpeg: unsupported FLASH audio "
+                        "codec %d (%s)")) %
+                        info.codec % (audioCodecType)info.codec;
                            throw MediaException(err.str());
                }
        }
@@ -230,13 +233,14 @@
        {
                if (info.type == FLASH) {
                        boost::format err = boost::format(
-                               _("AudioDecoderFfmpeg: libavcodec could not 
find a decoder for codec %d (%s)")) %
-                               info.codec % 
static_cast<audioCodecType>(info.codec);
+                               _("AudioDecoderFfmpeg: libavcodec could not 
find a decoder "
+                    "for codec %d (%s)")) %
+                    info.codec % static_cast<audioCodecType>(info.codec);
                        throw MediaException(err.str());
                } else {
                        boost::format err = boost::format(
-                               _("AudioDecoderFfmpeg: libavcodec could not 
find a decoder for ffmpeg codec id %s")) %
-                               codec_id;
+                               _("AudioDecoderFfmpeg: libavcodec could not 
find a decoder "
+                    "for ffmpeg codec id %s")) % codec_id;
                        throw MediaException(err.str());
                }
        }
@@ -253,12 +257,13 @@
             if ( info.type == FLASH )
             {
                 err = boost::format(
-                    _("AudioDecoderFfmpeg: could not initialize a parser for 
flash codec id %d (%s)")) %
+                    _("AudioDecoderFfmpeg: could not initialize a parser for "
+                        "flash codec id %d (%s)")) %
                         info.codec % (audioCodecType)info.codec;
             } else {
                 err = boost::format(
-                    _("AudioDecoderFfmpeg: could not initialize a parser for 
ffmpeg codec id %s")) %
-                        codec_id;
+                    _("AudioDecoderFfmpeg: could not initialize a parser "
+                        "for ffmpeg codec id %s")) % codec_id;
             }
             throw MediaException(err.str());
         }
@@ -270,17 +275,20 @@
        // Create an audioCodecCtx from the ffmpeg parser if exists/possible
        _audioCodecCtx = avcodec_alloc_context();
        if (!_audioCodecCtx) {
-               throw MediaException(_("AudioDecoderFfmpeg: libavcodec couldn't 
allocate context"));
+               throw MediaException(_("AudioDecoderFfmpeg: libavcodec couldn't 
"
+                    "allocate context"));
        }
 
        if ( info.extra.get() )
        {
                if (dynamic_cast<ExtraAudioInfoFfmpeg*>(info.extra.get())) {
-                       const ExtraAudioInfoFfmpeg& ei = 
static_cast<ExtraAudioInfoFfmpeg&>(*info.extra);
+                       const ExtraAudioInfoFfmpeg& ei = 
+                static_cast<ExtraAudioInfoFfmpeg&>(*info.extra);
                        _audioCodecCtx->extradata = ei.data;
                        _audioCodecCtx->extradata_size = ei.dataSize;
                } else if (dynamic_cast<ExtraAudioInfoFlv*>(info.extra.get())) {
-                       ExtraAudioInfoFlv* extra = 
static_cast<ExtraAudioInfoFlv*>(info.extra.get());
+                       ExtraAudioInfoFlv* extra = 
+                static_cast<ExtraAudioInfoFlv*>(info.extra.get());
                        _audioCodecCtx->extradata = extra->data.get();
                        _audioCodecCtx->extradata_size = extra->size;
                }
@@ -298,14 +306,16 @@
                        case CODEC_ID_PCM_U16LE:
                 _audioCodecCtx->channels = (info.stereo ? 2 : 1);
                 _audioCodecCtx->sample_rate = info.sampleRate;
-                _audioCodecCtx->sample_fmt = SAMPLE_FMT_S16; // was commented 
out, why ?
+                // was commented out (why?):
+                _audioCodecCtx->sample_fmt = SAMPLE_FMT_S16;
                 _audioCodecCtx->frame_size = 1; 
                 break;
 
             default:
                 _audioCodecCtx->channels = (info.stereo ? 2 : 1);
                 _audioCodecCtx->sample_rate = info.sampleRate;
-                _audioCodecCtx->sample_fmt = SAMPLE_FMT_S16; // was commented 
out, why ?
+                // was commented out (why?):
+                _audioCodecCtx->sample_fmt = SAMPLE_FMT_S16; 
                 break;
        }
 
@@ -349,8 +359,9 @@
         {
             assert(!_parser); // so we can directly return here...
             log_debug("AudioDecoderFfmpeg::decode called with 'parse' "
-                "parameter on but we know we don't need parsing for this 
codec");
-            parse = false; // let's belive in us !
+                "parameter on but we know we don't need parsing for "
+                "this codec");
+            parse = false; // let's believe in us !
         }
     }
 
@@ -359,8 +370,9 @@
        int retBufSize = 0;
 
 #ifdef GNASH_DEBUG_AUDIO_DECODING
-       log_debug("  Parsing loop starts, input is %d bytes, retCapacity is %d 
bytes", inputSize, retCapacity);
-#endif // GNASH_DEBUG_AUDIO_DECODING
+       log_debug("  Parsing loop starts, input is %d bytes, retCapacity is %d "
+            "bytes", inputSize, retCapacity);
+#endif
        decodedBytes = 0; // nothing decoded yet
        while (decodedBytes < inputSize)
        {
@@ -382,8 +394,9 @@
         }
 
 #ifdef GNASH_DEBUG_AUDIO_DECODING
-               log_debug("   parsed frame is %d bytes (consumed +%d = %d/%d)", 
framesize, consumed, decodedBytes+consumed, inputSize);
-#endif // GNASH_DEBUG_AUDIO_DECODING
+               log_debug("   parsed frame is %d bytes (consumed +%d = %d/%d)",
+                framesize, consumed, decodedBytes+consumed, inputSize);
+#endif
 
 #if GNASH_PARANOIA_LEVEL > 1
                if ( frame )
@@ -433,7 +446,8 @@
                // Now, decode the frame. We use the ::decodeFrame specialized 
function
                // here so resampling is done appropriately
                boost::uint32_t outSize = 0;
-               boost::scoped_array<boost::uint8_t> outBuf ( decodeFrame(frame, 
framesize, outSize) );
+               boost::scoped_array<boost::uint8_t> outBuf(
+                decodeFrame(frame, framesize, outSize));
 
                if (!outBuf)
                {
@@ -444,8 +458,10 @@
                }
 
 #ifdef GNASH_DEBUG_AUDIO_DECODING
-               log_debug("   decoded frame is %d bytes, would grow return 
buffer size to %d bytes", outSize, retBufSize+static_cast<unsigned 
int>(outSize));
-#endif // GNASH_DEBUG_AUDIO_DECODING
+               log_debug("   decoded frame is %d bytes, would grow return "
+                "buffer size to %d bytes", outSize,
+                retBufSize+static_cast<unsigned int>(outSize));
+#endif 
 
                //
                // Now append this data to the buffer we're going to return
@@ -456,9 +472,10 @@
                if ( retBufSize+(unsigned)outSize > retCapacity )
                {
 #ifdef GNASH_DEBUG_AUDIO_DECODING
-                       log_debug("    output buffer won't be able to hold %d 
bytes, capacity is only %d bytes",
-                               retBufSize+(unsigned)outSize, retCapacity);
-#endif // GNASH_DEBUG_AUDIO_DECODING
+                       log_debug("    output buffer won't be able to hold %d 
bytes, "
+                    "capacity is only %d bytes",
+                    retBufSize+(unsigned)outSize, retCapacity);
+#endif 
                        boost::uint8_t* tmp = retBuf;
                        retCapacity = 
std::max(retBufSize+static_cast<size_t>(outSize), retCapacity*2);
 #ifdef GNASH_DEBUG_AUDIO_DECODING
@@ -479,7 +496,8 @@
 }
 
 boost::uint8_t*
-AudioDecoderFfmpeg::decode(const EncodedAudioFrame& ef, boost::uint32_t& 
outputSize)
+AudioDecoderFfmpeg::decode(const EncodedAudioFrame& ef,
+        boost::uint32_t& outputSize)
 {
        return decodeFrame(ef.data.get(), ef.dataSize, outputSize);
 }
@@ -492,7 +510,9 @@
 
     assert(inputSize);
 
-    //static const unsigned int bufsize = (AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 
2;
+    //static const unsigned int bufsize = 
+    //(AVCODEC_MAX_AUDIO_FRAME_SIZE * 3) / 2;
+
     static const unsigned int bufsize = AVCODEC_MAX_AUDIO_FRAME_SIZE;
 
        // TODO: make this a private member, to reuse (see NetStreamFfmpeg in 
0.8.3)
@@ -509,21 +529,21 @@
         inputSize, _audioCodecCtx->channels, _audioCodecCtx->frame_size);
 #endif
 
+    // older ffmpeg versions didn't accept a const input..
        int tmp = AVCODEC_DECODE_AUDIO(_audioCodecCtx, outPtr, &outSize,
-                                   // older ffmpeg versions didn't accept a 
const input..
                                    const_cast<boost::uint8_t*>(input),
                                    inputSize);
 
 #ifdef GNASH_DEBUG_AUDIO_DECODING
-       log_debug(" avcodec_decode_audio[2](ctx, bufptr, %d, input, %d) 
returned %d; set frame_size=%d",
-               bufsize, inputSize, tmp, outSize);
+       log_debug(" avcodec_decode_audio[2](ctx, bufptr, %d, input, %d) "
+            "returned %d; set frame_size=%d",
+                   bufsize, inputSize, tmp, outSize);
 #endif
 
        if (tmp < 0)
        {
-               log_error(_("avcodec_decode_audio returned %d. "
-            "Upgrading ffmpeg/libavcodec might fix this issue."),
-            tmp);
+               log_error(_("avcodec_decode_audio returned %d. Upgrading "
+                    "ffmpeg/libavcodec might fix this issue."), tmp);
                outputSize = 0;
                delete [] output;
                return NULL;
@@ -531,9 +551,9 @@
 
        if (outSize < 2)
        {
-               log_error(_("outputSize:%d after decoding %d bytes of input 
audio data. "
-            "Upgrading ffmpeg/libavcodec might fix this issue."),
-                       outputSize, inputSize);
+               log_error(_("outputSize:%d after decoding %d bytes of input 
audio "
+                    "data. Upgrading ffmpeg/libavcodec might fix this issue."),
+                               outputSize, inputSize);
                outputSize = 0;
                delete [] output;
                return NULL;

=== modified file 'libmedia/ffmpeg/MediaParserFfmpeg.cpp'
--- a/libmedia/ffmpeg/MediaParserFfmpeg.cpp     2008-11-27 07:41:28 +0000
+++ b/libmedia/ffmpeg/MediaParserFfmpeg.cpp     2008-11-27 13:05:09 +0000
@@ -178,7 +178,7 @@
        //
 
        boost::uint64_t dts = packet.dts;
-    if ( dts == AV_NOPTS_VALUE ) {
+    if ( dts == static_cast<boost::uint64_t>(AV_NOPTS_VALUE) ) {
         // We'll take 'nopts' value as zero.
         // Would likely be better to make it use timestamp
         // of previous frame, if any.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]