I develop a Windows Phone 8.1 program using winRT and have an error which is not caught by VS. The only output line I get is "The program 'MyProgram.exe' has exited with code -1073741819 (0xc0000005) 'Access violation'." I have a HLS streaming and it occurs every time the stream ends. I thought it might be caused by calling Frame.GoBack() in non GUI thread, but I double checked this, and it is not the reason. Did anyone struggle with this kind of error and know what might be the reason or how to fix this.
WP8.1 (0xc0000005) 'Access violation' crash
784 Views Asked by Greg At
1
There are 1 best solutions below
Related Questions in CRASH
- Perl Command Line Interpreter crashing on exit
- matlab crash during acquisition of pointgrey images
- Running Line of code twice causes activeX error 0x8000ffff
- iOS application crash on [ParseCrashReporting enable]
- Visual Studio 2013 crashes when writing opening angle bracket
- sql management crashes when getting database list
- C program crashes when I tried to set an element of type char* in my struct to a specific string?
- Animation in WXpython leads to "python.exe has stopped working"
- iOS crash report analysis
- Android Studio randomly disappears/crashes with 7GB Ram
- How crash reporting tools really work
- Parse.com crash with basic project on iOS 7.0
- Crash cause of own template
- Xamarin App crashes on Reopen NullReference
- WPF Application crashes on startup
Related Questions in WINDOWS-PHONE-8.1
- Ellipsis inside button content Windows Phone
- Unable to resolve property '%1' while processing properties for Uid '%0'
- Deploy enterprise (in-house) application on windows phone without developer unlocking the phone?
- How to check if Windows device is phone or tablet/pc?
- How to send/receive messages through a web socket on windows phone 8.1
- How To Prevent Over Scrolling in Scroll Viewer Windows Phone 8.1
- Nvigation Windows Phone Apps
- Windows Phone 8.1 - HttpClient SendRequestAsync will never return with a response
- How many items can we put in winrt listview
- Set parameter to notification
- How can I create a simple text file on a windows phone (8.1) that can be accessed trough USB cable?
- How to stop credential caching on Windows.Web.Http.HttpClient?
- Windows Phone 8.1 : how to Launch an Installed app From My app
- WinJS Issues | Windows 8.1 and Windows Phone
- How do I add Google Analytics to a large Windows Phone 8.1 project
Related Questions in ACCESS-VIOLATION
- Access Violation: 0xC0000005, why is this happening?
- WP8.1 (0xc0000005) 'Access violation' crash
- Delphi Access Violation when moving button on form
- VC++ Access violation reading from private member value types (bool)
- Cancelling a thread in pthread_cond_wait yields to access violation under MinGW
- OpenGL, Access violation
- Access violation reading Location (Visual Studio C++)
- log4cpp crashing while loading properties file
- Access violation reading location 0xFDFDFDFD
- SFML Access violation
- (C#) AccessViolationException when getting char ** from C++ DLL
- Unexpected Acess violation reading (tail)
- C++ program crashing on exit, Access violation in memory
- OpenFileDialog throws "Attempted to read or write protected memory"
- AccessViolationException when calling an extern method directly
Related Questions in HTTP-LIVE-STREAMING
- How to get a thumbnail of a live stream?
- loadHTTPProvider error on wowza
- Hi!,Our m3u8 stream not work on Android
- WP8.1 (0xc0000005) 'Access violation' crash
- Is transmitting PES(Packetised Elementary Stream) better or MPEG-TS in Live Streaming from mobile (IOS) to server
- Video streaming issue
- How to adjust mpeg 2 ts start time with ffmpeg?
- Mp4 to HLS using ffmpeg
- Embed m3u8 with flowplayer using JS
- How to play ts file using the cache in the AVPlayer?
- Elastic transcoder(HLS): generating playlist based on original video
- Access-Control-Allow-Origin with HLS streaming and video JS
- FFMpeg hls_time accuracy
- AVPlayer empties buffer when app is in background
- Set -keyint_min ffmpeg
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I was having the same issue in my application (Universal WP8.1 WinRT). First, I thought it was because I wasn't using Dispatcher when calling Frame.Navigate (see here).
On searching further, & checking my code, I found that calling
Frame.GoBack()from within an event was causing the issue. In my case, it was being called when a user toggles some option in settings page.But, when I call
Frame.GoBack()in the hardware back button press event handler, there is no exception. Everything worked fine.In your case, you can just stop the streaming on stream end event, & let the user press back button to return to previous page. Or, although I haven't tried this, try using a Dispatcher:
Hope this helps.