Closed (fixed)
Project:
FlashVideo
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
10 Feb 2009 at 17:21 UTC
Updated:
1 Mar 2009 at 00:20 UTC
The introduction of some constants to refer to the supported streaming metods (FLASHVIDEO_STREAMING_METHOD_RTMP, FLASHVIDEO_STREAMING_METHOD_XMOOV) did not follow through to all of the streaming module's code.
Attached patch rectifies this (I think I got all the references)
| Comment | File | Size | Author |
|---|---|---|---|
| flashvideo-constants.patch | 8.72 KB | mrfelton |
Comments
Comment #1
attheshow commentedComment #2
attheshow commentedComment #3
attheshow commentedComment #4
mrfelton commentedThis is actually a bug. The constants are already in the current -dev version, but are only used in a couple of places. They need to either be used properly (everywhere where their values are referred to) or not used at all. Currently the code is checking for the value or 'RTMP' or 'xmoov', but these are never actually set because the constants are used in the form element that is supposed to set them.
For example, this will not currently work:
But this will:
Comment #5
attheshow commentedThanks. I didn't notice you had inserted those constants in some of the previous code. Should be fixed now.