]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[core] scan-build: Value stored to 'pid' is never read - buffer_vp9_packets() 350/head
authorDragos Oancea <dragos@signalwire.com>
Thu, 13 Feb 2020 11:54:31 +0000 (11:54 +0000)
committerDragos Oancea <dragos@signalwire.com>
Thu, 13 Feb 2020 12:18:54 +0000 (12:18 +0000)
src/switch_vpx.c

index 3d54b39e435aa4b74e3e363677fa36437e4a2a12..e35d87712fb40ce66129c78ae17a94aa231848f6 100644 (file)
@@ -1109,13 +1109,15 @@ static switch_status_t buffer_vp9_packets(vpx_context_t *context, switch_frame_t
        vp9++;
 
        if (desc->have_pid) {
+#ifdef DEBUG_VP9
                uint16_t pid = 0;
-
                pid = *vp9 & 0x7f;      //0 bit is M , 1-7 bit is pid.
-
+#endif
                if (*vp9 & 0x80) {      //if (M==1)
                        vp9++;
+#ifdef DEBUG_VP9
                        pid = (pid << 8) + *vp9;
+#endif 
                }
 
                vp9++;